使用任意 xml 文件验证 xml

发布于 2024-08-18 00:46:46 字数 112 浏览 6 评论 0原文

在我的公司中,他们提出了自己的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

蓝天 2024-08-25 00:46:46

一种可能性是创建 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.

执着的年纪 2024-08-25 00:46:46

查看包 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?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文