Java tutorial
//package com.java2s; import org.w3c.dom.*; public class Main { public static String getElementValue(Node node) { return node.getNodeValue(); } }