Java XML Node Text Value getInnerXmlText(Node xmlNode)

Here you can find the source of getInnerXmlText(Node xmlNode)

Description

get Inner Xml Text

License

Apache License

Declaration

static public String getInnerXmlText(Node xmlNode) 

Method Source Code


//package com.java2s;
/*/*ww  w. java  2  s . c om*/
 * Copyright (C) 2014 Dell, Inc.
 *
 * 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.DOMImplementation;
import org.w3c.dom.Document;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;
import org.w3c.dom.ls.DOMImplementationLS;
import org.w3c.dom.ls.LSSerializer;

public class Main {
    static public String getInnerXmlText(Node xmlNode) {
        StringBuilder result = new StringBuilder();

        Document xmlDocument = xmlNode.getOwnerDocument();
        DOMImplementation xmlDocumentImpl = xmlDocument.getImplementation();
        DOMImplementationLS lsImpl = (DOMImplementationLS) xmlDocumentImpl.getFeature("LS", "3.0");
        LSSerializer lsSerializer = lsImpl.createLSSerializer();

        NodeList childNodes = xmlNode.getChildNodes();
        for (int i = 0; i < childNodes.getLength(); i++) {
            String childText = lsSerializer.writeToString(childNodes.item(i));
            int pos = childText.indexOf("?>");
            if (pos > -1) {
                childText = childText.substring(pos + 2);
            }
            result.append(childText);
        }

        return result.toString();
    }
}

Related

  1. getElementText(Node elem)
  2. getFirstExtensionNode(Node extensionsNode)
  3. getFirstExtensionNodeFromWorkingSet(Node extensionsNode, String workingSetName)
  4. getFirstLevelTextContent(Node node)
  5. getFirstSubElementsInnerText(Node element, String subElementName)
  6. getNamedItemText(NamedNodeMap map, String name)
  7. getNamespaceURIFromPrefix(Node context, String prefix)
  8. getNamespaceURIFromPrefix(Node context, String prefix)
  9. getNodeText(final Node node)