Here you can find the source of getDirectText(org.w3c.dom.Element node)
public static String getDirectText(org.w3c.dom.Element node)
//package com.java2s; import org.w3c.dom.Element; import org.w3c.dom.Node; public class Main { public static String getDirectText(org.w3c.dom.Element node) { Node n = node.getFirstChild(); StringBuilder b = new StringBuilder(); while (n != null) { if (n.getNodeType() == Node.TEXT_NODE) b.append(n.getTextContent()); n = n.getNextSibling();//from w ww. j a v a2 s . c o m } return b.toString().trim(); } public static Element getFirstChild(Element e) { if (e == null) return null; Node n = e.getFirstChild(); while (n != null && n.getNodeType() != Node.ELEMENT_NODE) n = n.getNextSibling(); return (Element) n; } public static Element getNextSibling(Element e) { Node n = e.getNextSibling(); while (n != null && n.getNodeType() != Node.ELEMENT_NODE) n = n.getNextSibling(); return (Element) n; } }