[
Lists Home |
Date Index |
Thread Index
]
This five liner will parse a document, but do nothing else.
public class SimpleParser {
public static void main(String args[]) throws Exception {
javax.xml.parsers.SAXParserFactory.newInstance().newSAXParser().getXMLReader
().parse(args[0]);
}
}
Keith
|