Here you can find the source of xmlGetFirstTextValue(Node node)
Parameter | Description |
---|---|
node | DOM Node fra hvilken værdien af den første child tekst node skal læses. |
public static String xmlGetFirstTextValue(Node node)
//package com.java2s; //License from project: Apache License import org.w3c.dom.Node; import org.w3c.dom.NodeList; public class Main { /**//from ww w. j a v a 2s . co m * Metode til at læse værdien af den første child tekst node * i en DOM Node. * @param node DOM Node fra hvilken værdien af den første child tekst node skal læses. */ public static String xmlGetFirstTextValue(Node node) { String theValue = ""; NodeList theNodeList = node.getChildNodes(); if (theNodeList != null) { for (int i = 0; i < theNodeList.getLength(); i++) { Node textNode = theNodeList.item(i); if (textNode != null) { theValue = textNode.getNodeValue(); if (theValue == null) { theValue = ""; } break; } } } return theValue; } }