Java tutorial
//package com.java2s; //License from project: Apache License import org.w3c.dom.Element; public class Main { /** * Get the first child element with the given name. * * @param element The parent element * @param name The child element name * @return The child element or null */ public static Element getChild(Element element, String name) { return (Element) element.getElementsByTagName(name).item(0); } }