Android SAX解析检索速度很慢

时间:2012-04-09 12:13:17

标签: android android-emulator sax android-parser

在我的应用程序中,我有大约50到100个要解析的数据...还有一些2 MB大小的图像......所有这些都要检索到单个活动并在那里排序和显示......

但它花了大约2分钟......太多了。

如何减少解析时间?

或者我错了使用SAX解析???建议请....

SAXParserFactory spf = SAXParserFactory.newInstance();
      SAXParser sp = spf.newSAXParser();
      XMLReader xr = sp.getXMLReader();

      /** Send URL to parse XML Tags */
      URL sourceUrl = new URL(url);

      /** Create handler to handle XML Tags ( extends DefaultHandler ) */
      XmlHandler xmlHandler4Profile = new XmlHandler();
      xr.setContentHandler(xmlHandler4Profile);
      xr.parse(new InputSource(sourceUrl.openStream()));

      } 

XmlHandler.java的代码

public class XmlHandler extends DefaultHandler{
static GetXml getxml;
Boolean currentElement = false;
String currentValue = null;


@Override
public void startElement(String uri, String localName, String qName,
    Attributes attributes) throws SAXException {
// TODO Auto-generated method stub
currentElement=true;
   if (localName.equals("root"))
    {
        /** Start */ 
       getxml = new GetXml();
    } 
}

@Override
public void endElement(String uri, String localName, String qName)
        throws SAXException {
    // TODO Auto-generated method stub
    currentElement=false;

    //**************************display page************************

    if (localName.equalsIgnoreCase("DisplayId"))
         getxml.setDisplayId(currentValue);     

     if (localName.equalsIgnoreCase("DisplayPage"))
         getxml.setDisplayPage(currentValue);

    //**************************category details************************

        if (localName.equalsIgnoreCase("CategoryId"))
             getxml.setCategoryId(currentValue);        

         if (localName.equalsIgnoreCase("CategoryName"))
             getxml.setCategory(currentValue);

        //**************************news details************************ 

         if (localName.equalsIgnoreCase("Picture"))
             getxml.setPictureName(currentValue);       

         if (localName.equalsIgnoreCase("newsHeading"))
             getxml.setNewsHeading(currentValue);

         if (localName.equalsIgnoreCase("Mainnews"))
             getxml.setMainNews(currentValue);




}
    @Override
public void characters(char[] ch, int start, int length)
        throws SAXException {
    // TODO Auto-generated method stub
     if (currentElement) {
            currentValue = new String(ch, start, length);
            currentElement = false;
        }
}

2 个答案:

答案 0 :(得分:3)

你真的应该分析你的代码并找出它花费时间的地方。

我可以在您发布的代码中看到一个性能问题和一个正确性问题。

通过在else代码中添加一些endElement用法,您将获得一些收益。一旦你知道localName符合某些内容,就不需要对所有后来可能无法匹配的可能性进行检查。

这可能收效不大,但肯定值得尝试。

您的characters方法错误,但这与正确性而非效率有关。有关SAX解析的另一个问题,请参阅my answer以了解错误以及如何编写正确的characters方法。此更改还需要更改endElement获取值的方式,因为必须将其收集到缓冲区中。

答案 1 :(得分:2)

答案很可能是您正在使用的SAX解析器正在检查互联网上的xml内容的架构或DTD。如果你编写一个绕过这些检查的entityResolver,你可能会改善你的开始时间(通常是2分钟左右)。

有关详细信息,请参阅此处。

How to read well formed XML in Java, but skip the schema?

这解决了我使用Xerces的问题...