Java XML Element Get Value getTextValue(Element ele, String tagName)

Here you can find the source of getTextValue(Element ele, String tagName)

Description

I take a xml element and the tag name, look for the tag and get the text content i.e for John xml snippet if the Element points to employee node and tagName is 'name' I will return John

License

Open Source License

Declaration

public static String getTextValue(Element ele, String tagName) 

Method Source Code

//package com.java2s;
/**/*  w  w w .  j a va  2  s  . c  o  m*/
 * RAMPART - Robust Automatic MultiPle AssembleR Toolkit
 * Copyright (C) 2013  Daniel Mapleson - TGAC
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU 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 General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 **/

import org.w3c.dom.Element;

import org.w3c.dom.NodeList;

public class Main {
    /**
     * I take a xml element and the tag name, look for the tag and get
     * the text content
     * i.e for <employee><name>John</name></employee> xml snippet if
     * the Element points to employee node and tagName is 'name' I will return John
     */
    public static String getTextValue(Element ele, String tagName) {

        // Look for elements first
        NodeList nl = ele.getElementsByTagName(tagName);
        if (nl != null && nl.getLength() > 0) {
            Element el = (Element) nl.item(0);
            return el.getFirstChild().getNodeValue();
        }

        // If there are no elements look for an attribute
        return ele.getAttribute(tagName);
    }
}

Related

  1. getTextValue(Element ele, String tagName)
  2. getTextValue(Element ele, String tagName)
  3. getTextValue(Element ele, String tagName)
  4. getTextValue(Element ele, String tagName)
  5. getTextValue(Element ele, String tagName)
  6. getTextValue(Element element)
  7. getTextValue(Element element)
  8. getTextValue(Element element, String name)
  9. getTextValue(Element element, String tagName)