Java XML Element Get getElementContent(Element e)

Here you can find the source of getElementContent(Element e)

Description

Returns the content of the given element.

License

Apache License

Declaration

public static String getElementContent(Element e) 

Method Source Code

//package com.java2s;
/*/*  w w w  .j av a  2 s .  co 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;

public class Main {
    /**
     * Returns the content of the given element.
     */
    public static String getElementContent(Element e) {
        StringBuffer result = new StringBuffer();
        for (Node n = e.getFirstChild(); n != null; n = n.getNextSibling()) {
            switch (n.getNodeType()) {
            case Node.ELEMENT_NODE:
                result.append(getElementContent((Element) n));
                break;
            case Node.CDATA_SECTION_NODE:
            case Node.TEXT_NODE:
                result.append(n.getNodeValue());
            }
        }
        return result.toString();
    }
}

Related

  1. getElementByTagName(Element element, String name)
  2. getElementByTagName(Element element, String name, int index)
  3. getElementByTagName(Element element, String tag)
  4. getElementByTagName(Element element, String tag)
  5. getElementByTagName(Element n, String elementName)
  6. getElementContent(Element elem)
  7. getElementContent(Element elem)
  8. getElementContent(Element element, String defaultStr)
  9. getElementContent(Element element, String defaultStr)