用于根据 NMTOKEN 验证字符串的 Java 实用程序

发布于 2024-07-06 06:49:04 字数 324 浏览 11 评论 0原文

我有一些生成 XML 文档的应用程序代码,然后根据 XML 模式对其进行验证。 该模式使用 NMTOKEN 类型,有时,生成的 XML 包含非法 NMTOKEN 的字符串值(例如,它们包含空格或奇怪的标点符号)。 当然,Xerces 架构验证可以很好地捕获它,但我想在我自己的代码中更早地捕获它,并更优雅地处理它。

我打算编写自己的 isValidNMTOKEN 方法,并根据架构规范检查每个字符是否有效,但我希望有一个现有的实用程序可以为我执行此操作。

有点像 XML 的 commons-lang。 遗憾的是,xml.apache.org/commons 中没有任何有用的内容。

I have some application code which generates XML documents, which are then validated against an XML Schema. The schema makes use of NMTOKEN types, and occasionally, the generated XML contains string values which are illegal NMTOKENs (e.g. they contain spaces or weird punctuation). The Xerces schema validation catches it OK, of course, but I'd like to catch it earlier, in my own code, and handle it more gracefully.

I was going to write my own isValidNMTOKEN method, and check that each charcter is valid according to the schema spec, but I was hoping there was an existing utility out there that would do this for me.

Sort of like a commons-lang for XML. Nothing useful in xml.apache.org/commons, sadly.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

长发绾君心 2024-07-13 06:49:04

Apachie Axis(Web 服务框架)中的 org.apache.axis.types.NMToken 有一个静态 isValid(String) 方法,可能正是您所需要的(或者可能超出您所需要的)。

Axis API 中的 NMToken

org.apache.axis.types.NMToken from Apachie Axis (the webservice framework) has a static isValid(String) method and may be what you need (or may be more than you need).

NMToken in the Axis API

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