Java tutorial
//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(); } }