Here you can find the source of getAttributeValue(Node node, String attName)
public static String getAttributeValue(Node node, String attName)
//package com.java2s; //License from project: Open Source License import org.w3c.dom.Node; public class Main { public static String getAttributeValue(Node node, String attName) { Node attr = node.getAttributes().getNamedItem(attName); return attr.getNodeValue(); }//from w ww . j av a2s .co m }