Android XmlPullParser Read readLongAttribute(XmlPullParser in, String name)

Here you can find the source of readLongAttribute(XmlPullParser in, String name)

Description

read Long Attribute

License

Apache License

Declaration

public static long readLongAttribute(XmlPullParser in, String name)
            throws IOException 

Method Source Code

//package com.java2s;
/*/*from  w  w w.  jav  a2s . com*/
 * Copyright (C) 2006 The Android Open Source Project
 *
 * Licensed 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 org.xmlpull.v1.XmlPullParser;

import java.io.IOException;

import java.net.ProtocolException;

public class Main {
    public static long readLongAttribute(XmlPullParser in, String name,
            long defaultValue) {
        final String value = in.getAttributeValue(null, name);
        try {
            return Long.parseLong(value);
        } catch (NumberFormatException e) {
            return defaultValue;
        }
    }

    public static long readLongAttribute(XmlPullParser in, String name)
            throws IOException {
        final String value = in.getAttributeValue(null, name);
        try {
            return Long.parseLong(value);
        } catch (NumberFormatException e) {
            throw new ProtocolException("problem parsing " + name + "="
                    + value + " as long");
        }
    }
}

Related

  1. readInt(XmlPullParser parser)
  2. readIntAttribute(XmlPullParser in, String name)
  3. readIntAttribute(XmlPullParser in, String name)
  4. readIntAttribute(XmlPullParser in, String name, int defaultValue)
  5. readInteger(XmlPullParser parser, String ns, String tag)
  6. readLongAttribute(XmlPullParser in, String name, long defaultValue)
  7. readNumber(XmlPullParser parser)
  8. readString(XmlPullParser parser, String ns, String tag)
  9. readStringArray(XmlPullParser parser, String tagName, String delimiter)