XML Java

import org.w3c.dom.Node;
public class Util{
  /**
   * Renvoie le texte contenu dans un élément
   * 
   * @param node
   * @return
   */
  public static String getText(final Node node) {
    Node text = node.getFirstChild();
    if (text == null)
      return "";
    return text.getNodeValue();
  }
}