2014.10.31读取和解析XML数据

前端之家收集整理的这篇文章主要介绍了2014.10.31读取和解析XML数据前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

今天学习读取和解析XML数据,读取比较简单,都是固定的方法,在http://blog.csdn.net/fendou123_love/article/details/17921823看到写的还不错,就直接拿来了

1) 得到DOM解析器的工厂实例 DocumentBuilderFactorydomfac=DocumentBuilderFactory.newInstance();

2) 然后从DOM工厂获得DOM解析器 DocumentBuilderdombuilder=domfac.newDocumentBuilder();

3)把要解析的XML文档转化为输入流,以便DOM解析器解析它

InputStreamis=newFileInputStream("test1.xml");

4)解析XML文档的输入流,得到一个Document

Documentdoc=dombuilder.parse(is);

5)得到XML文档的根节点

Elementroot=doc.getDocumentElement();

6)得到节点的子节点

NodeListbooks=root.getChildNodes();

补充:7)得到标签的节点

NodeList list=root.getElementsByTagName("此处为标签的名字");

原文链接:https://www.f2er.com/xml/297782.html

猜你在找的XML相关文章