码迷,mamicode.com
首页 > 其他好文 > 详细

SAX解析XML

时间:2014-08-23 21:33:41      阅读:268      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   io   for   ar   div   log   

如果解析xml在主线程,则要在将xml解析成一个string,并进行解析;

主线程中更新UI的处理不应过多,可以另起方法;

否则会造成主线程中太多工作,而停止运行。

    private List<Mp3Info> parse(String xmlStr){
    SAXParserFactory saxParserFactory = SAXParserFactory.newInstance();
    List<Mp3Info> infos = new ArrayList<Mp3Info>();
    try{
    XMLReader xmlReader = saxParserFactory.newSAXParser().getXMLReader();
    GetMp3Info getMp3Info = new GetMp3Info();
    xmlReader.setContentHandler(getMp3Info);
    xmlReader.parse(new InputSource(new StringReader(xmlStr)));
    for (Iterator iterator = infos.iterator(); iterator.hasNext();) {
    Mp3Info mp3Info = (Mp3Info) iterator.next();
    Log.d("parse",mp3Info.getMp3name());
    }
    }
    catch(Exception e){
    e.printStackTrace();
    }
    return infos;
    }

 

SAX解析XML

标签:style   blog   color   os   io   for   ar   div   log   

原文地址:http://www.cnblogs.com/wulantuoyajr/p/3931739.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!