Java XML Child Get by Name getChildElement(Element currentNode, String nsURI, String localName)

Here you can find the source of getChildElement(Element currentNode, String nsURI, String localName)

Description

get Child Element

License

Apache License

Declaration

public static Element getChildElement(Element currentNode, String nsURI, String localName) 

Method Source Code

//package com.java2s;
/*//from   w  ww .  jav a2  s  .co  m
 * 
    
 DOMUtil.java
    
 Copyright 2007 KUBO Hiroya (hiroya@cuc.ac.jp).
    
 Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License.
 You may obtain a copy of the License at
    
 http://www.apache.org/licenses/LICENSE-2.0
    
 Unless required by applicable law or agreed to in writing, software
 distributed under the License is distributed on an "AS IS" BASIS,
 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 See the License for the specific language governing permissions and
 limitations under the License.
 */

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

public class Main {
    public static Element getChildElement(Element currentNode, String nsURI, String localName) {
        return (Element) getChildElementList(currentNode, nsURI, localName).item(0);
    }

    public static NodeList getChildElementList(Element node, String nsURI, String localName) {
        return node.getElementsByTagNameNS(nsURI, localName);
    }
}

Related

  1. getChildByTagName(Node parent, String tagname)
  2. getChildData(Element e, String tag)
  3. getChildDouble(final Element parent, final String name)
  4. getChildDoubleByName(Node node, String nodeName, double errValue)
  5. getChildElemByTagName(Element parent, String tagName)
  6. getChildElement(Element el, String tagName)
  7. getChildElement(Element el, String tagName)
  8. getChildElement(Element ele, String childName)
  9. getChildElement(Element elem, String name)