Android 学习之pull解析Xml
生活随笔
收集整理的這篇文章主要介紹了
Android 学习之pull解析Xml
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
一、 PUll解析Xml
?
public static List<Person> xmlParser(InputStream xml) throws Exception{List<Person> persons=null;Person p=null;XmlPullParser parser=Xml.newPullParser();parser.setInput(xml, "UTF-8");int event=parser.getEventType();while(event!=XmlPullParser.END_DOCUMENT){switch (event) {case XmlPullParser.START_DOCUMENT:persons=new ArrayList<Person>();break;case XmlPullParser.START_TAG:if (parser.getName().equals("person")) {p=new Person();p.setId(Integer.parseInt(parser.getAttributeValue(0)));}if (parser.getName().equals("name")) {p.setName(parser.nextText());}if(parser.getName().equals("age")){p.setAge(Integer.parseInt(parser.nextText()));}break;case XmlPullParser.END_TAG:if (parser.getName().equals("person")) {persons.add(p);p=null;}break;}event=parser.next();}return persons;}?二、以Xml格式保存信息
public static void saveAsXml(List<Person> persons,OutputStream os)throws Exception{XmlSerializer xmlSerial= Xml.newSerializer();xmlSerial.setOutput(os, "UTF-8");xmlSerial.startDocument("UTF-8", true);xmlSerial.startTag(null, "persons");for(Person person : persons){xmlSerial.startTag(null, "person");xmlSerial.attribute(null, "id",String.valueOf(person.getId()));xmlSerial.startTag(null, "name");xmlSerial.text(person.getName());xmlSerial.endTag(null, "name");xmlSerial.startTag(null, "age");xmlSerial.text(String.valueOf(person.getAge()));xmlSerial.endTag(null, "age"); xmlSerial.endTag(null, "person");}xmlSerial.endTag(null, "persons");xmlSerial.endDocument();os.flush();os.close();}?
轉載于:https://www.cnblogs.com/yunim2014/p/3819307.html
總結
以上是生活随笔為你收集整理的Android 学习之pull解析Xml的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: windows下安装多个tomcat服务
- 下一篇: openStack工具集