码迷,mamicode.com
首页 > 编程语言 > 详细

java 读取xml

时间:2019-07-16 00:39:31      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:class   nod   throw   方式   document   node   判断   attribute   value   

采用sax的方式来读取并解析xml文件。

public static void main(String[] args) throws DocumentException {
		//1.获取到读取对象
		SAXReader saxReader = new SAXReader();
		Document doc = saxReader.read("f:\\info.xml");
		Element rootElement = doc.getRootElement();
		getNodes(rootElement);
	}
	static public void getNodes(Element rootElement){
		String name = rootElement.getName();
		System.out.println("节点名称:"+name);
		//获取节点属性
		List<Attribute> attributes = rootElement.attributes();
		for (Attribute attribute : attributes) {
			System.out.println("属性名称:"+attribute.getName()+",属性value"+attribute.getValue());
		}
		String value=rootElement.getTextTrim();
		if(!value.equals("")){
			System.out.println("节点value"+value);
		}
		//判断是否有下一个节点
		Iterator<Element> elementIterator = rootElement.elementIterator();
		while (elementIterator.hasNext()) {
			Element next = elementIterator.next();
			getNodes(next);
		}
	}

  

 

java 读取xml

标签:class   nod   throw   方式   document   node   判断   attribute   value   

原文地址:https://www.cnblogs.com/hglSV/p/11192265.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!