read XML Data from String - Android XML

Android examples for XML:XML String

Description

read XML Data from String

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 javax.xml.parsers.*;
import org.w3c.dom.*;
import java.io.*;

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

    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);
    }
}

Related Tutorials