简体   繁体   中英

Using SAX parser to validate an xml file against xml schema offline

How to validate an XML file against an XSD local file without connecting to a server using a SAX parser?
What to add and where?
How to change this code?

schema = SchemaFactory.newInstance(XMLConstants.W3C_XML_SCHEMA_NS_URI).newSchema(xs);

As I understand the question you are asking how to connect a local file as a scheme Example

Source schemaFile = new StreamSource(new ClassPathResource("datTag.xsd").getInputStream());
        SchemaFactory schemaFactory = SchemaFactory.newInstance(XMLConstants.W3C_XML_SCHEMA_NS_URI);
        schema = schemaFactory.newSchema(schemaFile);

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM