Here you can find the source of getIntAttributeValue(Node node, String attribute)
public static Integer getIntAttributeValue(Node node, String attribute)
//package com.java2s; import org.w3c.dom.Node; public class Main { public static Integer getIntAttributeValue(Node node, String attribute) { String value = getAttributeValue(node, attribute); if (value == null) return null; return Integer.parseInt(value); }/* www . j a v a2 s.co m*/ public static String getAttributeValue(Node node, String attribute) { Node att = node.getAttributes().getNamedItem(attribute); if (att == null) return null; return att.getTextContent(); } }