Java XML Child Get getChild(Element parentEl, String name)

Here you can find the source of getChild(Element parentEl, String name)

Description

get Child

License

Open Source License

Declaration

public static Element getChild(Element parentEl, String name) 

Method Source Code

//package com.java2s;
/**/*w w  w. ja v  a2s  .c om*/
 * <!-- LICENSE_TEXT_START -->
 * Copyright 2001-2004 SAIC. Copyright 2001-2003 SAIC. This software was developed in conjunction with the National Cancer Institute, 
 * and so to the extent government employees are co-authors, any rights in such works shall be subject to Title 17 of the United States Code, section 105. 
 * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 
 * 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the disclaimer of Article 3, below. Redistributions 
 * in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other 
 * materials provided with the distribution. 
 * 2. The end-user documentation included with the redistribution, if any, must include the following acknowledgment:
 * "This product includes software developed by the SAIC and the National Cancer Institute."
 * If no such end-user documentation is to be included, this acknowledgment shall appear in the software itself, 
 * wherever such third-party acknowledgments normally appear. 
 * 3. The names "The National Cancer Institute", "NCI" and "SAIC" must not be used to endorse or promote products derived from this software. 
 * 4. This license does not authorize the incorporation of this software into any third party proprietary programs. This license does not authorize 
 * the recipient to use any trademarks owned by either NCI or SAIC-Frederick. 
 * 5. THIS SOFTWARE IS PROVIDED "AS IS," AND ANY EXPRESSED OR IMPLIED WARRANTIES, (INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 
 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE) ARE DISCLAIMED. IN NO EVENT SHALL THE NATIONAL CANCER INSTITUTE, 
 * SAIC, OR THEIR AFFILIATES BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 
 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
 * <!-- LICENSE_TEXT_END -->
 */

import java.util.ArrayList;
import java.util.List;
import org.w3c.dom.Element;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;

public class Main {
    public static Element getChild(Element parentEl, String name) {
        Element child = null;
        List children = getChildren(parentEl, name);
        if (children.size() > 0) {
            child = (Element) children.iterator().next();
        }
        return child;
    }

    public static List getChildren(Element parentEl, String name) {
        List children = new ArrayList();
        NodeList l = parentEl.getChildNodes();
        for (int i = 0; i < l.getLength(); i++) {
            Node n = l.item(i);
            if (Node.ELEMENT_NODE == n.getNodeType() && name.equals(n.getNodeName())) {
                children.add((Element) n);
            }
        }
        return children;
    }
}

Related

  1. getChild(Element parent, int i)
  2. getChild(Element parent, String element)
  3. getChild(Element parent, String name)
  4. getChild(Element parent, String name)
  5. getChild(Element parent, String name)
  6. getChild(Element root, String... path)
  7. getChild(final Element element, final String tagName)
  8. getChild(final Element parent, final String tag)
  9. getChild(final Element root, final String name)