Next in thread →
Next in month →
RE: [xml-dev] a minimal SAX application in Java
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
Next in thread →
Next in month →