xpath提取xml文档数据

前端之家收集整理的这篇文章主要介绍了xpath提取xml文档数据前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
public class Demo4 {

	public static void main(String[] args) throws Exception {
		SAXReader reader = new SAXReader();
	    Document document = reader.read(new File("src/book.xml"));
		
	    String value = document.selectSingleNode("//作者").getText();
	    System.out.println(value);
	}

}
提取具体东西时,可以查看xpath文档,了解提取路径 原文链接:https://www.f2er.com/xml/297954.html

猜你在找的XML相关文章