使用任意 xml 文件验证 xml
在我的公司中,他们提出了自己的 xml,用作数据模式,现在我必须根据该模式验证 xml。有什么简单的方法可以做到这一点还是我必须从头开始编写?
我正在使用 java6...
谢谢
in my company they have came up with their own xml that is being used as a schema for data, now i have to validate a xml according to that schema. is there any easy way to do it or i have to write from scratch?
i am working with java6...
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
一种可能性是创建 XSLT 转换,将自行开发的架构文档转换为标准,例如 XML 架构 或 放松 NG。
One possibility is to create an XSLT transform that converts the homegrown schema document into a standard such as XML Schema or Relax NG.
查看包 javax.xml .validation,从 Java 5 开始,API 支持自定义模式的验证。
SchemaFactory 对象具有newSchema 方法将获取一个文件并从中创建一个可以进行验证的模式。
编辑:如果您需要将 XML 文件转换为架构,请查看此问题: 有任何工具可以从 XML 实例文档生成 XSD 架构吗?
Check out Package javax.xml.validation , as of Java 5 the API supports validation for custom schema.
The SchemaFactory object has a method newSchema that will take a file and create a schema from it that can be validated against.
Edit: If you need to convert your XML file to a schema look at this question: Any tools to generate an XSD schema from an XML instance document?