Here you can find the source of getTextContent(Node node)
public static String getTextContent(Node node)
//package com.java2s; //License from project: Open Source License import org.w3c.dom.CharacterData; import org.w3c.dom.Node; import org.w3c.dom.NodeList; public class Main { public static String getTextContent(Node node) { // this method is useful when DOM Level 3 "getTextContent" is not implemented if (node.getNodeType() == Node.TEXT_NODE) { return ((CharacterData) node).getData(); }//www.jav a 2 s.co m final StringBuffer pieces = new StringBuffer(); final NodeList children = node.getChildNodes(); for (int i = 0; i < children.getLength(); i++) { final Node child = children.item(i); if (child.getNodeType() == Node.TEXT_NODE) { pieces.append(((CharacterData) child).getData()); } else { pieces.append(getTextContent(child)); } } return pieces.toString(); } }