Java tutorial
//package com.java2s; //License from project: Apache License import org.w3c.dom.NamedNodeMap; import org.w3c.dom.Node; public class Main { public static Integer getIntAttribute(NamedNodeMap namedNodeMap, String name) { String value = getAttribute(namedNodeMap, name); if (value == null) { return null; } else { return Integer.valueOf(value); } } public static String getAttribute(NamedNodeMap namedNodeMap, String name) { Node node = namedNodeMap.getNamedItem(name); if (node == null) { return null; } return node.getNodeValue(); } }