Here you can find the source of getValue(Element element)
Parameter | Description |
---|---|
element | The Element |
public static String getValue(Element element)
//package com.java2s; import org.w3c.dom.Element; import org.w3c.dom.Node; import org.w3c.dom.Text; public class Main { /**/*from ww w. j a va2 s . co m*/ * Get the text value for the specified element. If the element is null, or the element's body is empty then this * method will return null. * * @param element The Element * @return The value String or null */ public static String getValue(Element element) { if (element != null) { Node dataNode = element.getFirstChild(); if (dataNode != null) { return ((Text) dataNode).getData(); } } return null; } }