Java XML Element Text getSimpleElementText(Element element)

Here you can find the source of getSimpleElementText(Element element)

Description

Returns the text inside an element.

License

Apache License

Parameter

Parameter Description
element The element.

Return

The text inside the element.

Declaration

public static String getSimpleElementText(Element element) 

Method Source Code

//package com.java2s;
/*/*from  www .j  a  v a  2 s.com*/
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You 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.Node;
import org.w3c.dom.NodeList;
import org.w3c.dom.Text;

public class Main {
    /**
     * Returns the text inside an element. Only the child text nodes of this
     * element are collected.
     * @param element The element.
     * @return The text inside the element.
     */
    public static String getSimpleElementText(Element element) {
        StringBuffer buffer = new StringBuffer();
        NodeList children = element.getChildNodes();

        for (int i = 0; i < children.getLength(); i++) {
            Node child = children.item(i);

            if (child instanceof Text) {
                buffer.append(child.getNodeValue());
            }
        }

        return buffer.toString();
    }
}

Related

  1. getElementTextByTagName(Element n, String elementName)
  2. getElementTextDataNoEx(Element element, boolean unindent)
  3. getElementTextOrNull(final XMLStreamReader reader)
  4. getElementTextValue(Element element)
  5. getElementTextValue(Element in)
  6. getSimpleElementText(Element node)
  7. getSimpleElementText(Element node)
  8. getSimpleElementText(Element node, boolean trim)
  9. getSimpleElementText(final Element element, final String nodeName)