Android XML Element Child Get getFullTextChildrenFromElement(Element element)

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

Description

Method getFullTextChildrenFromElement

License

Apache License

Parameter

Parameter Description
element a parameter

Return

the string of children

Declaration

public static String getFullTextChildrenFromElement(Element element) 

Method Source Code

//package com.java2s;
/**/*from   ww  w  . j  a v  a2s. c  o  m*/
 * 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.Text;

public class Main {
    /**
     * Method getFullTextChildrenFromElement
     *
     * @param element
     * @return the string of children
     */
    public static String getFullTextChildrenFromElement(Element element) {
        StringBuilder sb = new StringBuilder();

        Node child = element.getFirstChild();
        while (child != null) {
            if (child.getNodeType() == Node.TEXT_NODE) {
                sb.append(((Text) child).getData());
            }
            child = child.getNextSibling();
        }

        return sb.toString();
    }
}

Related

  1. firstChildWithName(Element element, String name)
  2. getChild(Element element, String name)
  3. getChildByType(Element element, short nodeType)
  4. getChildElementByName(Element parent, String name)
  5. getChildValue(Element element, String name)
  6. printChildElements(Element root, PrintStream out, boolean recurse, String prefix)
  7. valueOfFirstChildWithName(Element element, String name)
  8. attributeOfFirstChildWithName(Element element, String name, String attribute)
  9. childrenWithName(Element e, String name)