0

我必须使用 sax 解析器开发一个 xml 解析应用程序。

我在下面的 xml 提要中遵循:

<root>
  <Categories>
        <Category name="Photos">
             <article articleid="4537" title="Sonam-Steals-the-Mai-Show"/>
             <article articleid="4560" title="Big-B-Croons-For-World-Peace"/>
              <article articleid="4585" title="Yami-Paints-The-Town-Red"/>
         </Category>
       <Category name="Style">
             <article articleid="266" title="Dita wows us in a sari"/>
             <article articleid="268" title="Frieda is a natural"/>
             <article articleid="269" title="Demi finds love in Jodhpur"/>
       </Category>
    </Categories>
    </root>

在这里,我必须为 getter 和 setter 创建一个类:

public class Laptop {
            private String brand;
            private List<String> model;
          public String getBrand() {
           return brand;
             }

       public void setBrand(String brand) {
               this.brand = brand;
                }
         public List<String> getModel() {
          return model;
           }
        public void setModel(List<String> string) {
          this.model = string;
         } 

我的 xml 处理程序如下代码所示:

public void startElement(String uri, String localName, String qName,
        Attributes attributes) throws SAXException {
    current = true;
        if (localName.equals("Category")) {
        laptop = new Laptop();
        laptop.setBrand(attributes.getValue("name"));

    }

     else if (localName.equals("article")) {
           laptop.setModel(attributes.getValue("title"));
       } 
        }

public void characters(char[] ch, int start, int length)
        throws SAXException {
    if(current)
    {
        currentValue = new String(ch, start, length);
        current=false;
    }
         }

     public void endElement(String uri, String localName, String qName)
        throws SAXException {
          current = false;
      if (localName.equals("Category")) {
          // add it to the list
          laptops.add(laptop);

      } 
    if (localName.equals("article")) {
        laptop.getModel().add(currentValue);
        } 

在这些行上出现以下错误:

           laptop.setModel(attributes.getValue("title"));

膝上型计算机类型中的方法 setModel(List) 不适用于参数 (String)

我该如何解决该错误。请给我解决这些问题...

4

3 回答 3

2

该错误表示您无法将String实例分配给List实例。这是相当合理的。自从

public void setModel(List<String> string) {
          this.model = string;
} 

将 List 作为参数。

如果您想为每个笔记本电脑实例保留一篇(文章),List您可以尝试以这种方式进行尽可能修复String

public void setModel(String string) {
      if (this.model == null)
           this.model = new List<String>();    
      this.model.add(string);
}
于 2013-02-27T09:23:55.917 回答
0

正如@blackbelt 试图解释的那样,您只能分配方法接受的值。TextView.setText(CharSequence)接受 aCharSequence所以你应该提供一个字符串,而 getModel() 返回一个字符串列表List<String>

于 2013-02-27T09:38:04.047 回答
0

我不是在鼓励你这样编码,但你可以避免使用模型类并将你的数据类型转换到 Handler 类中,如下所示:

public void startElement(String uri, String localName, String qName,
            Attributes attributes) throws SAXException {
        currentElement = true;
        db = new DatabaseHelper(thecontext);
        if (qName.equals("Asa.Amms.Data.Entity.User")) {
            int length = attributes.getLength();
            for (int i = 0; i < length; i++) {
                String name = attributes.getQName(i);
                if (name.equals("Id")) {
                    id = Integer.parseInt(attributes.getValue(i));
                }
                if (name.equals("Login")) {
                    LoginID = attributes.getValue(i).toString();
                }
                if (name.equals("Name")) {
                    Name = attributes.getValue(i).toString();
                }
                if (name.equals("Password")) {
                    Password = attributes.getValue(i).toString();
                }
                if (name.equals("ProgramOfficerId")) {
                    user_ProgramOfficerId = Integer.parseInt(attributes.getValue(i).toString());
                }
            }    
            db.insertUser(id, LoginID, Name, Password, user_ProgramOfficerId);
        }
}
于 2015-06-14T10:27:37.667 回答