如何根据 XSD 文件验证 XML 文件?

2022-08-31 05:17:31

我正在生成一些xml文件,这些文件需要符合提供给我的xsd文件。我应该如何验证它们是否符合?


答案 1

Java 运行时库支持验证。上次我检查的是Apache Xerces解析器。你应该使用javax.xml.validation.Validator

import javax.xml.XMLConstants;
import javax.xml.transform.Source;
import javax.xml.transform.stream.StreamSource;
import javax.xml.validation.*;
import java.net.URL;
import org.xml.sax.SAXException;
//import java.io.File; // if you use File
import java.io.IOException;
...
URL schemaFile = new URL("http://host:port/filename.xsd");
// webapp example xsd: 
// URL schemaFile = new URL("http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd");
// local file example:
// File schemaFile = new File("/location/to/localfile.xsd"); // etc.
Source xmlFile = new StreamSource(new File("web.xml"));
SchemaFactory schemaFactory = SchemaFactory
    .newInstance(XMLConstants.W3C_XML_SCHEMA_NS_URI);
try {
  Schema schema = schemaFactory.newSchema(schemaFile);
  Validator validator = schema.newValidator();
  validator.validate(xmlFile);
  System.out.println(xmlFile.getSystemId() + " is valid");
} catch (SAXException e) {
  System.out.println(xmlFile.getSystemId() + " is NOT valid reason:" + e);
} catch (IOException e) {}

架构工厂常量是定义 XSD 的字符串。上面的代码针对 URL 验证 WAR 部署描述符,但您也可以同样轻松地针对本地文件进行验证。http://www.w3.org/2001/XMLSchemahttp://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd

不应使用 DOMParser 来验证文档(除非您的目标是创建文档对象模型)。这将在解析文档时开始创建DOM对象 - 如果您不打算使用它们,那将是浪费。


答案 2

以下是使用Xerces2执行此操作的方法。这方面的教程,在这里(要求注册)。

原文署名:公然抄袭自此

import org.apache.xerces.parsers.DOMParser;
import java.io.File;
import org.w3c.dom.Document;

public class SchemaTest {
  public static void main (String args[]) {
      File docFile = new File("memory.xml");
      try {
        DOMParser parser = new DOMParser();
        parser.setFeature("http://xml.org/sax/features/validation", true);
        parser.setProperty(
             "http://apache.org/xml/properties/schema/external-noNamespaceSchemaLocation", 
             "memory.xsd");
        ErrorChecker errors = new ErrorChecker();
        parser.setErrorHandler(errors);
        parser.parse("memory.xml");
     } catch (Exception e) {
        System.out.print("Problem parsing the file.");
     }
  }
}

推荐