/** * * XML Parser fuer XML Dateien mit XML Schema Definitionen * Pruefung auf Wohlgeformtheit und Validitaet * * @version 1.0 vom 31.03.2009 * @author Henning Budde */ import org.xml.sax.*; import org.xml.sax.helpers.*; public class XMLSchemaParseBeispiel{ public static void main(String[] args) { String SchemaUrl = "tabelleMa.xsd"; Parser p1 = new Parser("tabelleMa2.xml"); p1.start(true, SchemaUrl); } }