使用dom4j读取xml'时,当需要根据路径读取时,需要使用jaxen-1.1-beta-6.jar,
File f = new File("B://workplace//InterfaceSystem//src//com//tmzs//xml//编目信息.xml");
FileReader fr = new FileReader(f);
SAXReader reader = new SAXReader();
Document doc= reader.read(f);
Element root = doc.getRootElement();
Object obj1 = root.selectSingleNode("//Object/MetaData/sAttribute[@strName='关键词']");
/bookstore/book[1] | 选取属于 bookstore 子元素的第一个 book 元素。 |
/bookstore/book[last()] | 选取属于 bookstore 子元素的最后一个 book 元素。 |
/bookstore/book[last()-1] | 选取属于 bookstore 子元素的倒数第二个 book 元素。 |
/bookstore/book[position()<3] | 选取最前面的两个属于 bookstore 元素的子元素的 book 元素。 |
//title[@lang] | 选取所有拥有名为 lang 的属性的 title 元素。 |
//title[@lang='eng'] | 选取所有 title 元素,且这些元素拥有值为 eng 的 lang 属性。 |
参考:http://www.w3school.com.cn/xpath/xpath_syntax.asp