Java XML First Child Element getFirstChildElementByName(Element root, String tagName)

Here you can find the source of getFirstChildElementByName(Element root, String tagName)

Description

get First Child Element By Name

License

Open Source License

Declaration

public static Element getFirstChildElementByName(Element root, String tagName) 

Method Source Code

//package com.java2s;
/*/*  ww  w  .  j  a v a  2  s . c o  m*/
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 3.0 of the License, or (at your option) any later version.
 *
 *      http://www.gnu.org/licenses/lgpl-3.0.txt
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
 * MA 02110-1301 USA
 */

import org.w3c.dom.Element;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;

public class Main {
    public static Element getFirstChildElementByName(Element root, String tagName) {
        NodeList nl = root.getChildNodes();
        for (int i = 0; i < nl.getLength(); i++) {
            Node child = nl.item(i);
            if (child.getNodeType() != Node.ELEMENT_NODE) {
                continue;
            }
            if (tagName.equals(child.getNodeName())) {
                return (Element) child;
            }
        }
        return null;
    }
}

Related

  1. getFirstChildElement(Node parent)
  2. getFirstChildElement(Node rootNode)
  3. getFirstChildElement(Node start)
  4. getFirstChildElementByLocalName(Element parentElem, String localName)
  5. getFirstChildElementByName(Element parent, String tagName)
  6. getFirstChildElementByName(final Element parent, final String name)
  7. getFirstChildElementByName(Node node, String name)
  8. getFirstChildElementByTagName(Element element, String name)
  9. getFirstChildElementByTagName(Node element, String tagName)