blob: f75b3f6fec509d39f49c6bfb7d7132ebfe0b778c [file] [log] [blame]
/* (C) Copyright 2000, Andy Clark. All rights reserved. */
import java.io.IOException;
import org.apache.xalan.xslt.XSLTInputSource;
import org.apache.xalan.xslt.XSLTProcessor;
import org.apache.xalan.xslt.XSLTProcessorFactory;
import org.apache.xalan.xslt.XSLTResultTarget;
import org.apache.xerces.dom.DocumentImpl;
import org.apache.xml.serialize.HTMLSerializer;
import org.apache.xml.serialize.OutputFormat;
import org.w3c.dom.Document;
import org.xml.sax.SAXException;
/**
* @author Andy Clark
* @version $Id$
*/
public class Stylesheet {
public static void main(String argv[]) {
if (argv.length != 2) {
System.err.println("usage: java Stylesheet xml_file xsl_file");
System.exit(1);
}
Document doc = new DocumentImpl();
try {
XSLTProcessor processor = XSLTProcessorFactory.getProcessor();
XSLTInputSource xml = new XSLTInputSource(argv[0]);
XSLTInputSource xslt = new XSLTInputSource(argv[1]);
XSLTResultTarget target = new XSLTResultTarget(doc);
processor.process(xml, xslt, target);
}
catch (SAXException e) {
System.err.println("error: Error processing stylesheet.");
System.exit(1);
}
try {
OutputFormat format = new OutputFormat();
format.setIndenting(true);
format.setIndent(1);
HTMLSerializer serializer = new HTMLSerializer(format);
serializer.setOutputByteStream(System.out);
serializer.serialize(doc);
}
catch (IOException e) {
System.err.println("error: Unable to output document.");
System.exit(1);
}
System.exit(0);
} // main(String[])
} // class Stylesheet