get XML Node Text - Java XML

Java examples for XML:DOM Node Value

Description

get XML Node Text

Demo Code


//package com.java2s;
import org.w3c.dom.Element;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;

public class Main {
    public static String getNodeText(Node parentNode, String nodeName) {
        Element fstElmnt = (Element) parentNode;
        NodeList fstNmElmntLst = fstElmnt.getElementsByTagName(nodeName);
        Element fstNmElmnt = (Element) fstNmElmntLst.item(0);
        NodeList fstNm = fstNmElmnt.getChildNodes();
        String ret = ((Node) fstNm.item(0)).getNodeValue();
        return ret;
    }// ww w .  j  a va2s .  co  m

    public static String getNodeText(Node node) {
        NodeList fstNm = ((Element) node).getChildNodes();
        String ret = ((Node) fstNm.item(0)).getNodeValue();
        return ret;
    }
}

Related Tutorials