Here you can find the source of getNodeAttributeValue(Node node, String attributeName)
public static String getNodeAttributeValue(Node node, String attributeName)
//package com.java2s; //License from project: Open Source License import org.w3c.dom.Element; import org.w3c.dom.Node; public class Main { public static String getNodeAttributeValue(Node node, String attributeName) { return ((Element) node).getAttribute(attributeName); }//from w w w .j a va2 s . com }