Here you can find the source of getTextValue(Element element, String tagName)
Parameter | Description |
---|---|
element | Element |
tagName | String |
public static String getTextValue(Element element, String tagName)
//package com.java2s; /*// w w w . j a va 2s . c om * Copyright (c) 2008-2011 Simon Ritchie. * All rights reserved. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published * by the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see http://www.gnu.org/licenses/>. */ import org.w3c.dom.*; public class Main { /** * Return the text value for the first element that is a child of 'element' with the name 'tagName'. * @param element Element * @param namespaceURI String * @param tagName String * @return String */ public static String getTextValue(Element element, String namespaceURI, String tagName) { String textVal = null; Element el = getFirstChildElement(element, namespaceURI, tagName); if (el != null) { Node firstChild = el.getFirstChild(); if (firstChild != null) { textVal = firstChild.getNodeValue(); } } return textVal; } /** * Return the text value for the first element that is a child of 'element' with the name 'tagName'. * @param element Element * @param tagName String * @return String */ public static String getTextValue(Element element, String tagName) { String textVal = null; Element el = getFirstChildElement(element, tagName); if (el != null) { Node firstChild = el.getFirstChild(); if (firstChild != null) { textVal = firstChild.getNodeValue(); } } return textVal; } /** * Return the first element that is a child of 'element' with the name 'tagName'. * @param element Element * @param namespaceURI String * @param tagName String * @return Element */ public static Element getFirstChildElement(Element element, String namespaceURI, String tagName) { NodeList nl = element.getElementsByTagNameNS(namespaceURI, tagName); if (nl != null && nl.getLength() > 0) { return (Element) nl.item(0); } return null; } /** * Return the first element that is a child of 'element' with the name 'tagName'. * @param element Element * @param tagName String * @return Element */ public static Element getFirstChildElement(Element element, String tagName) { NodeList nl = element.getElementsByTagName(tagName); if (nl != null && nl.getLength() > 0) { return (Element) nl.item(0); } return null; } }