java中dom方式读取xml,怎样根据xml的某个属性找到指定节点?? 比如id属性

2024-11-03 05:30:18
推荐回答(3个)
回答1:

Element rootEle = dom.getRootElement();
rootEle.getAttributeValue("id") 还是rootEle.getChild(name)?

最好有个XML例子 不清楚说的指定节点是啥意思

回答2:

用dom4j
xpath
http://www.zvon.org/xxl/XPathTutorial/General/examples.html

回答3:

看了你写的代码。是用sax解析xml啊,不用导入dom4j