Java XML Attribute Set attribute(Element element, String attrName)

Here you can find the source of attribute(Element element, String attrName)

Description

attribute

License

Open Source License

Declaration

public static String attribute(Element element, String attrName) 

Method Source Code

//package com.java2s;
/*//www .  j  a va2 s .c o  m
 * JBoss, Home of Professional Open Source
 * Copyright 2005, JBoss Inc., and individual contributors as indicated
 * by the @authors tag. See the copyright.txt in the distribution for a
 * full listing of individual contributors.
 *
 * This 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 2.1 of
 * the License, or (at your option) any later version.
 *
 * This software 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 software; if not, write to the Free
 * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
 * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
 */

import org.w3c.dom.Attr;

import org.w3c.dom.Element;

public class Main {
    public static String attribute(Element element, String attrName) {
        Attr attr = element.getAttributeNode(attrName);
        return attr != null ? attr.getValue() : null;
    }
}

Related

  1. attr(Element element, String name)
  2. attr(Element element, String name)
  3. attrbiuteToMap( NamedNodeMap attributes)
  4. attribute(Node node, String... attributes)
  5. attributeBooleanGet(Element e, String name, boolean defaultValue)
  6. attributeBooleanSet(Element base, String name, boolean value, boolean defaultValue)
  7. attributeBoolValue(Element e, String attr)