Here you can find the source of attributeOfFirstChildWithName(Element element, String name, String attribute)
public static String attributeOfFirstChildWithName(Element element, String name, String attribute)
//package com.java2s; /******************************************************************************* * Copyright (c) 2013 Jose Alcal? Correa. * All rights reserved. This program and the accompanying materials * are made available under the terms of the GNU Lesser Public License v3.0 * which accompanies this distribution, and is available at * http://www.gnu.org/licenses/lgpl-3.0.txt * //from w w w . java 2 s .c o m * Contributors: * Jose Alcal? Correa - initial API and implementation ******************************************************************************/ import org.w3c.dom.Element; import org.w3c.dom.Node; import org.w3c.dom.NodeList; public class Main { public static String attributeOfFirstChildWithName(Element element, String name, String attribute) { Element e = firstChildWithName(element, name); if (element != null) { return e.getAttribute(attribute); } return null; } public static Element firstChildWithName(Element element, String name) { NodeList list = element.getChildNodes(); final int length = list.getLength(); for (int i = 0; i < length; ++i) { Node n = list.item(i); if (n.getNodeType() == Node.ELEMENT_NODE && n.getNodeName().equals(name)) return (Element) n; } return null; } }