Get an attribute of a dom node

你。 提交于 2019-12-03 14:24:56

问题


I am trying to get an attribute of an xml node example:

<Car name="Test">
</Car>

I want to grab the name attribute of the car node.

DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
DocumentBuilder db = dbf.newDocumentBuilder();          
Document doc = db.parse(configFile);
doc.getDocumentElement().normalize();           
NodeList layerConfigList = doc.getElementsByTagName("CAR");
Node node = layerConfigList.item(0);
// get the name attribute out of the node.

this is where i get stuck because the only method that looks like i can use is getAttributes() with returns a NamedNodeMap and im not sure how to extract it from that.


回答1:


Your node is an Element so you just have to

Element e = (Element)node;
String name = e.getAttribute("name");



回答2:


you can do it without using elements, like this:

//HtmlTag represents any arbitrary node that you are trying to get its "car" attribute 

if("HtmlTag".equals(node.getNodeName()))
 String nodeContent=node.getAttributes().getNamedItem("car").getNodeValue()


来源:https://stackoverflow.com/questions/5895160/get-an-attribute-of-a-dom-node

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!