Here you can find the source of getNodeTextValue(Node node)
public static String getNodeTextValue(Node node)
//package com.java2s; //License from project: LGPL import org.w3c.dom.*; public class Main { public static String getNodeTextValue(Node node) { return node.getFirstChild().getNodeValue(); }//from w w w.jav a2s . co m }