Java tutorial
//package com.java2s; import org.w3c.dom.DOMException; import org.w3c.dom.NamedNodeMap; public class Main { public static String getAttributeValue(NamedNodeMap attribs, String attributeName) throws DOMException { String value = null; if (attribs.getNamedItem(attributeName) != null) value = attribs.getNamedItem(attributeName).getNodeValue(); return value; } }