/* Copyright 2002, 2003 Elliotte Rusty Harold This library is free software; you can redistribute it and/or modify it under the terms of version 2.1 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, see . You can contact Elliotte Rusty Harold by sending e-mail to elharo@ibiblio.org. Please include the word "XOM" in the subject line. The XOM home page is located at https://xom.nu/ */ package nu.xom.samples; import java.io.File; import java.io.IOException; import java.io.UnsupportedEncodingException; import nu.xom.Builder; import nu.xom.Document; import nu.xom.ParsingException; import nu.xom.Serializer; import nu.xom.ValidityException; import nu.xom.xinclude.BadParseAttributeException; import nu.xom.xinclude.InclusionLoopException; import nu.xom.xinclude.NoIncludeLocationException; import nu.xom.xinclude.XIncludeException; import nu.xom.xinclude.XIncluder; /** * @author Elliotte Rusty Harold * @version 1.0 * */ public class XIncludeDriver { /** *

* The driver method for the XIncluder program. *

* * @param args args[0] contains the URL or * file name of the first document to be processed. */ public static void main(String[] args) { Builder builder = new Builder(); try { Document input = null; // Is args[0] a file or an absolute URL? if (args[0].indexOf("://") >= 0) { input = builder.build(args[0]); } else { input = builder.build(new File(args[0])); } XIncluder.resolveInPlace(input); Serializer outputter = new Serializer(System.out, "ISO-8859-1"); outputter.write(input); } catch (IOException e) { System.err.println("I/O error reading " + args[0] + " " + e.getMessage()); e.printStackTrace(); } catch (ParsingException e) { System.err.println("Malformed XML while processing " + args[0] + " " + e.getMessage()); } catch (XIncludeException e) { System.err.println("XInclude error while processing " + args[0] + " " + e.getMessage()); } } }