Java XML Child Element Text getChildText(Node node)

Here you can find the source of getChildText(Node node)

Description

Returns the concatenated child text of the specified node.

License

Apache License

Parameter

Parameter Description
node The node to look at.

Declaration

public static String getChildText(Node node) 

Method Source Code

//package com.java2s;
/*/*  w ww  .  j a  va  2  s.  co m*/
 * Copyright 1999-2002,2004,2005 The Apache Software Foundation.
 * 
 * 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.Node;

public class Main {
    /**
     * Returns the concatenated child text of the specified node.
     * This method only looks at the immediate children of type
     * <code>Node.TEXT_NODE</code> or the children of any child
     * node that is of type <code>Node.CDATA_SECTION_NODE</code>
     * for the concatenation.
     *
     * @param node The node to look at.
     */
    public static String getChildText(Node node) {

        // is there anything to do?
        if (node == null) {
            return null;
        }

        // concatenate children text
        StringBuffer str = new StringBuffer();
        Node child = node.getFirstChild();
        while (child != null) {
            short type = child.getNodeType();
            if (type == Node.TEXT_NODE) {
                str.append(child.getNodeValue());
            } else if (type == Node.CDATA_SECTION_NODE) {
                str.append(getChildText(child));
            }
            child = child.getNextSibling();
        }

        // return text value
        return str.toString();

    }
}

Related

  1. getChildText(final Element parentElem, final String childName)
  2. getChildText(final Node node)
  3. getChildText(final Node node)
  4. getChildText(Node node)
  5. getChildText(Node node)
  6. getChildText(Node parent, String childName)
  7. getChildTextAsBoolean(Element parent, String childName, boolean defValue)
  8. getChildTextAsBooleanObj(Element parent, String childName, Boolean defValue)
  9. getChildTextByName(Element parent, String name)