1、Pull概述
Android系统中和创建XML相关的包为org.xmlpull.v1,在这个包中不仅提供了用于创建XML的XmlSerializer,还提供了用来解析XML的Pull方式解析器XmlPullParser
XmlSerializer没有像XmlPullParser那样提取XML事件,而是把它们推出到数据流OutputStream或Writer中。
XmlSerializer提供了很直观的API,即使用startDocument开始文档,endDocument结束文档,startTag开始元素,endTag结束元素,text添加文本等。
Pull方式创建XML,应用了标准xml构造器org.xmlpull.v1.XmlSerializer来创建 XML ,org.xmlpull.v1.XmlPullParser来解析XML,需要导入以下内容
org.xmlpull.v1
org.xmlpull.v1.XmlPullParser;
org.xmlpull.v1.XmlPullParserException;
org.xmlpull.v1.XmlPullParserFactory;
org.xmlpull.v1.XmlSerializer;
sdk源码查看路径(google code)
Pull 创建和解析 XML 的效果图:
2、Pull 创建 XML
pull方式,创建xml是通过XmlSerializer类实现
首先,通过XmlSerializer得到创建xml的实例xmlSerializer
接着,通过xmlSerializer 设置输出xmlSerializer.setOutput,xmlSerializer.startDocument("utf-8",null)设置xml属性等
然后,通过xmlSerializer 创建startDocument、startTag、text、endTag、endDocument等
Code
- /**Pull方式,创建XML*/
- publicStringpullXMLCreate(){
- StringWriterxmlWriter=newStringWriter();
- Person[]persons=newPerson[@H_403_128@3];//创建节点Person对象
- persons[@H_403_128@0]=newPerson(@H_403_128@1,"sunboy_2050","http://blog.csdn.net/sunboy_2050");
- 1]=newPerson(@H_403_128@2,"baidu","http://www.baidu.com");
- 2]=newPerson(@H_403_128@3,"google","http://www.google.com");
- try{
- ////方式一:使用Android提供的实用工具类android.util.Xml
- //XmlSerializerxmlSerializer=Xml.newSerializer();
- //方式二:使用工厂类XmlPullParserFactory的方式
- XmlPullParserFactoryfactory=XmlPullParserFactory.newInstance();
- XmlSerializerxmlSerializer=factory.newSerializer();
- xmlSerializer.setOutput(xmlWriter);//保存创建的xml
- xmlSerializer.setFeature("http://xmlpull.org/v1/doc/features.html#indent-output",true);
- //xmlSerializer.setProperty("http://xmlpull.org/v1/doc/properties.html#serializer-indentation","");//设置属性
- //xmlSerializer.setProperty("http://xmlpull.org/v1/doc/properties.html#serializer-line-separator","\n");
- xmlSerializer.startDocument("utf-8",null);//<?xmlversion='1.0'encoding='UTF-8'standalone='yes'?>
- xmlSerializer.startTag("","root");
- xmlSerializer.attribute("","author","homer");
- "date","2012-04-28");
- intpersonsLen=persons.length;
- for(inti=@H_403_128@0;i<personsLen;i++){
- "person");//创建person节点
- "id");
- xmlSerializer.text(persons[i].getId()+"");
- xmlSerializer.endTag("","name");
- xmlSerializer.text(persons[i].getName());
- "blog");
- xmlSerializer.text(persons[i].getBlog());
- "person");
- }
- "root");
- xmlSerializer.endDocument();
- }catch(XmlPullParserExceptione){//XmlPullParserFactory.newInstance
- e.printStackTrace();
- }catch(IllegalArgumentExceptione){//xmlSerializer.setOutput
- }catch(IllegalStateExceptione){ }catch(IOExceptione){ }catch(Exceptione){
- }
- savedXML(fileName,xmlWriter.toString());
- returnxmlWriter.toString();
- }
运行结果:
3、Pull 解析 XML
pull方式,解析xml是通过XmlPullParser类实现
首先,通过XmlPullParser得到解析xml的实例xpp
接着,通过xpp设置输入 xpp.setInput(is,"utf-8"),声明定义保存xml信息的数据结构(如:Person数组)
然后,通过xpp解析START_DOCUMENT、START_TAG、TEXT、END_TAG、END_DOCUMENT等
Code