Wednesday, 3 August 2011

Get the first child's content ( ie it's included TEXT node ).

  
import org.w3c.dom.Node;
/**
 *  
 *
 @author Costin Manolache
 */
public class Main {

  /** Get the first child's content ( ie it's included TEXT node ).
   */
  public static String getChildContentNode parent, String name ) {
      Node first=parent.getFirstChild();
      iffirst==null return null;
      for (Node node = first; node != null;
           node = node.getNextSibling()) {
          //System.out.println("getNode: " + name + " " + node.getNodeName());
          ifname.equalsnode.getNodeName() ) ) {
              return getContentnode );
          }
      }
      return null;
  }
  /** Get the trimed text content of a node or null if there is no text
   */
  public static String getContent(Node n ) {
      ifn==null return null;
      Node n1=getChild(n, Node.TEXT_NODE);

      ifn1==null return null;

      String s1=n1.getNodeValue();
      return s1.trim();
  }
  /** Get the first direct child with a given type
   */
  public static Node getChildNode parent, int type ) {
      Node n=parent.getFirstChild();
      whilen!=null && type != n.getNodeType() ) {
          n=n.getNextSibling();
      }
      ifn==null return null;
      return n;
  }
}

   
    
  

No comments:

Post a Comment