get Argument string from XML Node - Android XML

Android examples for XML:XML Node

Description

get Argument string from XML Node

Demo Code


//package com.java2s;
import org.w3c.dom.Element;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;

public class Main {
    public static String getArg(final Node node, final String strName,
            final String strDefaultValue) {
        return getArg(node.getChildNodes(), strName, strDefaultValue);
    }/*  www  .  j  ava2 s. c  om*/

    public static String getArg(final NodeList args, final String strName,
            final String strDefaultValue) {
        for (int i = 0; i < args.getLength(); ++i) {
            final Node node = args.item(i);

            if (node instanceof Element) {
                final Element arg = (Element) node;

                if (arg.getAttribute("name").equals(strName)) {
                    return node.getLastChild().getTextContent().trim();
                }
            }
        } // end for

        return strDefaultValue;
    }

    public static double getArg(final Node node, final String strName,
            final double dDefaultValue) {
        return getArg(node.getChildNodes(), strName, dDefaultValue);
    }

    public static double getArg(final NodeList args, final String strName,
            final double dDefaultValue) {
        final String strValue = getArg(args, strName, null);

        if (strValue == null) {
            return dDefaultValue;
        }

        return Double.valueOf(strValue);
    }

    public static int getArg(final Node node, final String strName,
            final int iDefaultValue) {
        return getArg(node.getChildNodes(), strName, iDefaultValue);
    }

    public static int getArg(final NodeList args, final String strName,
            final int iDefaultValue) {
        final String strValue = getArg(args, strName, null);

        if (strValue == null) {
            return iDefaultValue;
        }

        return Integer.valueOf(strValue);
    }
}

Related Tutorials