Java XML Attribute Get getAttributeAsString(XMLStreamReader reader, String name)

Here you can find the source of getAttributeAsString(XMLStreamReader reader, String name)

Description

Returns the string value of an attribute.

License

Apache License

Parameter

Parameter Description
reader a parameter
name a parameter

Declaration

public static String getAttributeAsString(XMLStreamReader reader, String name) 

Method Source Code

//package com.java2s;
/*/*from   w w w .ja  v a2s. co m*/
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 * 
 *   http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.    
 */

import javax.xml.stream.XMLStreamReader;

public class Main {
    /**
     * Returns the string value of an attribute.
     * @param reader
     * @param name
     * @return
     */
    public static String getAttributeAsString(XMLStreamReader reader, String name) {
        return reader.getAttributeValue(null, name);
    }
}

Related

  1. getAttributeAsBoolean(Element element, String name)
  2. getAttributeAsBoolean(NamedNodeMap map, String name)
  3. getAttributeAsInteger(Element element, String attrName, Integer defValue)
  4. getAttributeAsLong(Element element, String attrName, Long defValue)
  5. getAttributeAsString(NamedNodeMap attributes, String name)
  6. getAttributeAsURIString(XMLStreamReader reader, String name)
  7. getAttributeBoolean(Element aElement, String aAttributeName)
  8. getAttributeBoolean(Element el, String label)
  9. getAttributeBoolean(final Element element, final String name)