Next in thread → Next in month →

RE: [xml-dev] a minimal SAX application in Java

From
Keith W. Boone <>
To
xml-dev <>
Date
2002-10-17T14:08:37Z
ID
<>
Thread
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 →