All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.simpleframework.xml.stream.NodeBuilder Maven / Gradle / Ivy

Go to download

Simple is a high performance XML serialization and configuration framework for Java

There is a newer version: 2.7.1
Show newest version
/*
 * NodeBuilder.java July 2006
 *
 * Copyright (C) 2006, Niall Gallagher 
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation.
 *
 * This library 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 Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General 
 * Public License along with this library; if not, write to the 
 * Free Software Foundation, Inc., 59 Temple Place, Suite 330, 
 * Boston, MA  02111-1307  USA
 */

package org.simpleframework.xml.stream;

import javax.xml.stream.XMLInputFactory;
import javax.xml.stream.XMLEventReader;
import java.io.InputStream;
import java.io.Reader;
import java.io.Writer;

/**
 * The NodeBuilder object is used to create either an
 * input node or an output node for a given source or destination. 
 * If an InputNode is required for reading an XML
 * document then a reader must be provided to read the content from.
 * 

* If an OutputNode is required then a destination is * required. The provided output node can be used to generate well * formed XML to the specified writer. * * @author Niall Gallagher */ public final class NodeBuilder { /** * This is the XML input factory used to create XML readers. */ private static XMLInputFactory factory; static { factory = XMLInputFactory.newInstance(); } /** * This is used to create an InputNode that can be * used to read XML from the specified stream. The stream will * be positioned at the root element in the XML document. * * @param source this contains the contents of the XML source * * @throws Exception thrown if there is an I/O exception */ public static InputNode read(InputStream source) throws Exception { return read(factory.createXMLEventReader(source)); } /** * This is used to create an InputNode that can be * used to read XML from the specified reader. The reader will * be positioned at the root element in the XML document. * * @param source this contains the contents of the XML source * * @throws Exception thrown if there is an I/O exception */ public static InputNode read(Reader source) throws Exception { return read(factory.createXMLEventReader(source)); } /** * This is used to create an InputNode that can be * used to read XML from the specified reader. The reader will * be positioned at the root element in the XML document. * * @param source this contains the contents of the XML source * * @throws Exception thrown if there is an I/O exception */ private static InputNode read(XMLEventReader source) throws Exception { return new NodeReader(source).readRoot(); } /** * This is used to create an OutputNode that can be * used to write a well formed XML document. The writer specified * will have XML elements, attributes, and text written to it as * output nodes are created and populated. * * @param result this contains the result of the generated XML * * @throws Exception this is thrown if there is an I/O error */ public static OutputNode write(Writer result) throws Exception { return write(result, new Format()); } /** * This is used to create an OutputNode that can be * used to write a well formed XML document. The writer specified * will have XML elements, attributes, and text written to it as * output nodes are created and populated. * * @param result this contains the result of the generated XML * @param format this is the format to use for the document * * @throws Exception this is thrown if there is an I/O error */ public static OutputNode write(Writer result, Format format) throws Exception { return new NodeWriter(result, format).writeRoot(); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy