http://www.java2s.com/Code/JavaAPI/org.w3c.dom/NodegetAttributes.htm
аюсь получить атрибут примера узла 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, и я не уверен, как извлечь его из этого.