Java tutorial
//package com.java2s; import org.w3c.dom.Node; public class Main { public static Integer getAttributeValueAsInteger(Node node, String attributeName, Integer defaultValue) { final Node attributeNode = node.getAttributes().getNamedItem(attributeName); return attributeNode != null ? Integer.parseInt(attributeNode.getTextContent()) : defaultValue; } public static Integer getAttributeValueAsInteger(Node node, String attributeName) { final Node attributeNode = node.getAttributes().getNamedItem(attributeName); return attributeNode != null ? Integer.parseInt(attributeNode.getTextContent()) : null; } }