Android XML Node Value Get GetInt32Value(Node item)

Here you can find the source of GetInt32Value(Node item)

Description

Get Int Value

Declaration

public static int GetInt32Value(Node item) throws Exception 

Method Source Code

//package com.java2s;

import org.w3c.dom.*;

public class Main {
    public static int GetInt32Value(Node item) throws Exception {
        String asString = GetStringValue(item);
        return Integer.parseInt(asString);
    }/*from   w w  w  .  ja  v a  2  s. c  o m*/

    public static String GetStringValue(Node item) throws Exception {
        if (item instanceof Element) {
            Node node = item.getFirstChild();
            if (node != null)
                return node.getNodeValue();
            else
                return "";
        } else
            throw new Exception(String.format("Cannot handle '%s'.",
                    item.getClass()));
    }
}

Related

  1. GetBooleanValue(Node item)
  2. GetStringValue(Node item)
  3. getDoubleNodeValue(Node node)
  4. getElementValue(Node aElem)
  5. getElementValue(Node elem)