Here you can find the source of getAttribute(Element e, String attribute)
public static String getAttribute(Element e, String attribute)
//package com.java2s; import org.w3c.dom.Element; public class Main { public static String getAttribute(Element e, String attribute) { if (e.hasAttribute(attribute)) return e.getAttribute(attribute); return null; }/*w ww .jav a 2 s. c om*/ }