我正在尝试获取 xml 节点示例的属性:
<Car name="Test">
</Car>
我想获取汽车节点的名称属性。
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.
这就是我卡住的地方,因为看起来我可以使用的唯一方法是 getAttributes() 并返回一个 NamedNodeMap 并且我不知道如何从中提取它。