android sax解析器处理程序

时间:2013-02-27 09:18:40

标签: java android saxparser

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

我在xml Feed之后有以下内容:

<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)不适用于参数(字符串)

我如何解决这个错误。请给我这些解决方案...

3 个答案:

答案 0 :(得分:2)

错误表示yon无法将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);
}

答案 1 :(得分:0)

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

答案 2 :(得分: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);
        }
}