Java tutorial
//package com.java2s; import org.w3c.dom.*; public class Main { public static String getNodeProperty(Node node, String key) { NamedNodeMap attributes = node.getAttributes(); Node item = attributes.getNamedItem(key); return item == null ? null : item.getTextContent(); } }