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

src.java.test.TestEventCopier Maven / Gradle / Ivy

package test;

import java.io.*;
import java.util.Iterator;

import javax.xml.namespace.QName;
import javax.xml.stream.*;
import javax.xml.stream.events.*;

import org.codehaus.stax2.XMLInputFactory2;

import com.ctc.wstx.api.WstxInputProperties;

public class TestEventCopier
{
    final XMLInputFactory mFactory;

    private TestEventCopier()
    {
        super();
        System.setProperty("javax.xml.stream.XMLInputFactory",
                           "com.ctc.wstx.stax.WstxInputFactory");
        XMLInputFactory f = XMLInputFactory.newInstance();
        mFactory = f;
        //f.setProperty(XMLInputFactory.IS_COALESCING, Boolean.FALSE);
        f.setProperty(XMLInputFactory.IS_COALESCING, Boolean.TRUE);
        f.setProperty(XMLInputFactory.REPORTER, new TestReporter());

        f.setProperty(XMLInputFactory.IS_REPLACING_ENTITY_REFERENCES, Boolean.FALSE);
        System.out.println("");
    }

    private void test(String[] args)
        throws Exception
    {
        if (args.length != 1) {
            System.err.println("Usage: java ... "+getClass().getName()+" [file]");
            System.exit(1);
        }
        String filename = args[0];
        File file = new File(filename);
        InputStream in = new FileInputStream(file);

        // Let's pass generated system id:
        XMLEventReader er = mFactory.createXMLEventReader(file.toURL().toString(), in);
        Writer out = new PrintWriter(System.out);
        XMLOutputFactory of = XMLOutputFactory.newInstance();
        XMLEventWriter ew = of.createXMLEventWriter(out);

        while (er.hasNext()) {
            ew.add(er.nextEvent());
        }
        ew.close();
    }

    public static void main(String[] args) throws Exception
    {
        new TestEventCopier().test(args);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy