read XML Data from InputStream - Android XML

Android examples for XML:XML Parse

Description

read XML Data from InputStream

Demo Code

/********************************************************************************
 *
 *   Copyright (C) 2005  Svyatoslav Urbanovych
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.

 * This program 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 General Public License for more details.

 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 *********************************************************************************/
//package com.java2s;
import java.io.ByteArrayInputStream;

import java.io.InputStream;
import javax.xml.parsers.DocumentBuilderFactory;
import org.w3c.dom.Document;

public class Main {
    public static void main(String[] argv) throws Exception {
        String dataXML = "java2s.com";
        System.out.println(readXMLData(dataXML));
    }//from  w w  w  . j  ava  2  s.com

    public static Document readXMLData(String dataXML, boolean valid)
            throws Exception {
        if (dataXML == null)
            return null;
        ByteArrayInputStream xmlSrcStream = new ByteArrayInputStream(
                dataXML.getBytes());
        DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
        dbf.setValidating(valid);
        return dbf.newDocumentBuilder().parse(xmlSrcStream);
    }

    public static Document readXMLData(String dataXML) throws Exception {
        if (dataXML == null)
            return null;
        ByteArrayInputStream xmlSrcStream = new ByteArrayInputStream(
                dataXML.getBytes());
        DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
        dbf.setValidating(false);
        return dbf.newDocumentBuilder().parse(xmlSrcStream);
    }

    public static Document readXMLData(InputStream is) throws Exception {
        DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
        dbf.setValidating(false);
        return dbf.newDocumentBuilder().parse(is);
    }
}

Related Tutorials