Java tutorial
//package com.java2s; import org.w3c.dom.*; public class Main { /** * Parses the given attribute of this tag and returns it as a String. */ public static String getAttribString(Element ele, String name) { return ele.getAttribute(name); } }