Here you can find the source of getElementIntAttr(Node element, String attrName)
public static int getElementIntAttr(Node element, String attrName)
//package com.java2s; import org.w3c.dom.Node; public class Main { public static int getElementIntAttr(Node element, String attrName) { String attrValue = getElementAttr(element, attrName); if (attrValue != null) { return Integer.parseInt(attrValue); }/*from www. j a v a 2 s .c om*/ return 0; } public static String getElementAttr(Node element, String attrName) { if (element.getAttributes() != null) { for (int i = 0; i < element.getAttributes().getLength(); i++) { Node child = element.getAttributes().item(i); if (child.getNodeName().equals(attrName)) { return child.getNodeValue(); } } } return null; } }