前端之家收集整理的这篇文章主要介绍了
解析XML文档,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
package cc; import java.io.File; import java.util.Iterator; import java.util.List; import javax.xml.stream.events.Attribute; import org.dom4j.Document; import org.dom4j.DocumentException; import org.dom4j.Element; import org.dom4j.io.SAXReader; /** * @author cyrusLiu * @creation 2012-11-7 */ public class TestDom4j { public static void main(String[] args) { Document doc = null; try { doc = new SAXReader().read(new File("彝文出版产品版式规范.xml")); } catch (DocumentException e) { e.printStackTrace(); } Element root = doc.getRootElement(); System.out.println("根节点:"+root.getName()+",
内容:"+root.getTextTrim()); getElement(root); } private static void getElement(Element element){ List list = element.elements(); //递归
方法 for(Iterator its = list.iterator();its.hasNext();){ Element chileEle = (Element)its.next(); System.out.println("节点:"+chileEle.getName()+",
内容:"+chileEle.getTextTrim()+"
属性:"+chileEle.attributeValue("name")); // List<Attribute> listAttr=chileEle.attributes();//当前节点的所有
属性的list // for(Attribute attr:listAttr){//遍历当前节点的所有
属性 // String name=attr.getName();//
属性名称 // String value=attr.getValue();//
属性的值 // System.out.println("
属性名称:"+name+"
属性值:"+value); // } getElement(chileEle); } } }
原文链接:https://www.f2er.com/xml/295919.html