Here you can find the source of getNodeValue(Node node)
static String getNodeValue(Node node)
//package com.java2s; import org.w3c.dom.Node; public class Main { static String getNodeValue(Node node) { return (node == null || node.getFirstChild() == null || node .getFirstChild().getNodeValue() == null) ? null : node .getFirstChild().getNodeValue().trim(); }//from w ww .j a v a2s. co m }