Java tutorial
//package com.java2s; import org.w3c.dom.Element; import org.w3c.dom.Node; public class Main { public static String getNamedChildValue(Element element, String name) { Element e = getNamedChild(element, name); return e == null ? null : e.getAttribute("value"); } public static Element getNamedChild(Element e, String name) { Element c = getFirstChild(e); while (c != null && !name.equals(c.getLocalName()) && !name.equals(c.getNodeName())) c = getNextSibling(c); return c; } public static Element getFirstChild(Element e) { if (e == null) return null; Node n = e.getFirstChild(); while (n != null && n.getNodeType() != Node.ELEMENT_NODE) n = n.getNextSibling(); return (Element) n; } public static Element getNextSibling(Element e) { Node n = e.getNextSibling(); while (n != null && n.getNodeType() != Node.ELEMENT_NODE) n = n.getNextSibling(); return (Element) n; } }