Java XML Attribute Get getAttributeValue(Element element, String attributeName)

Here you can find the source of getAttributeValue(Element element, String attributeName)

Description

Returns the value of an attribute of a given XML element

License

Open Source License

Parameter

Parameter Description
element A element
attributeName The name of the attribute

Return

The value of the attribute or null if no such attribute exists

Declaration

public static String getAttributeValue(Element element, String attributeName) 

Method Source Code

//package com.java2s;
/*/*from   w w w .ja v  a2 s.  c  o  m*/
 * aTunes 1.8.2
 * Copyright (C) 2006-2008 Alex Aranda, Sylvain Gaudard, Thomas Beckers and contributors
 *
 * See http://www.atunes.org/?page_id=7 for information about contributors
 *
 * http://www.atunes.org
 * http://sourceforge.net/projects/atunes
 *
 * 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 2
 * 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.
 */

import org.w3c.dom.Element;

public class Main {
    /**
     * Returns the value of an attribute of a given XML element
     * 
     * @param element
     *            A element
     * @param attributeName
     *            The name of the attribute
     * @return The value of the attribute or <code>null</code> if no such
     *         attribute exists
     */
    public static String getAttributeValue(Element element, String attributeName) {
        return (null == element ? null : element.getAttribute(attributeName));
    }
}

Related

  1. getAttributeValue(Element el, String attributeName)
  2. getAttributeValue(Element el, String attrName)
  3. getAttributeValue(Element ele, String attrName)
  4. getAttributeValue(Element elem, String name)
  5. getAttributeValue(Element element, String attr)
  6. getAttributeValue(Element element, String attributeName, String namespaceURI)
  7. getAttributeValue(Element element, String attrName)
  8. getAttributeValue(Element element, String attrName)
  9. getAttributeValue(Element element, String name)