Basic HTML version of Foils prepared August 1 99

Foil 41 Validation of Document

From Advanced XML and its applications CPS714 Computational Science Information Track -- July 7 99. by Lukasz Beca


import org.xml.sax.Parser;
import org.xml.sax.ErrorHandler;
import org.xml.sax.helpers.ParserFactory;
public class Validator {
static final String parserClass = "com.ibm.xml.parsers.ValidatingSAXParser";
public static void main (String args[]) throws Exception {
Parser parser = ParserFactory.makeParser(parserClass);
ErrorHandler handler = new ErrorReport();
parser.setErrorHandler(handler);
parser.parse(args[0]);
}
}



© Northeast Parallel Architectures Center, Syracuse University, npac@npac.syr.edu

If you have any comments about this server, send e-mail to webmaster@npac.syr.edu.

Page produced by wwwfoil on Sun Aug 1 1999