SAX DOM解析xml
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SAX DOM解析xml相关的知识,希望对你有一定的参考价值。
1 获取XML文件的绝对路径
2,BookHandle h=new BookHandle();
3,SAXParserFactory factory=SAXParserFactory.newInstance();
4,SAXParser p=factory.newSAXParser();
5.p.parse(path,h);
DOM(document object model)解析xml
1 SAXReader reader=new SAXReader();
2 Document doc=reader.read(path);
Element e=doc.getRootEllement();
Iterator it=e.attributeIterator();
Attribute a=(Attribute)it.next();
a.getName();
a.getValue()
以上是关于SAX DOM解析xml的主要内容,如果未能解决你的问题,请参考以下文章