如何创建 DTD 并将其集成到 JAR 文件中..?
实际上,我有一个 java 程序,可以从特定的 XML 文件中读取数据。 现在我想为该程序创建一个 jar 文件,并包含相应的 DTD,以便任何使用我的 JAR 的人都可以根据该 DTD 检查其 XML。
请帮忙,提前致谢!
actually i have a java program that reads the data from a specific XML file.
now i want to create a jar file for that program and also include the corresponding DTD with it, so that any1 who uses my JAR can get its XML checked against that DTD.
Pls help, thanks in advance !
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要创建一个 Resolver 类,它将您的 DTD 的公共或系统 ID 解析为您打包在 jar 中的 DTD 的副本。
You will need to create a Resolver class which resolves public or system IDs for your DTD(s) to the copy of the DTD you package in your jar.
这将允许您在 .jar 中存储任意文件类型并稍后检索。当您打包 .jar 时,请明确包含 DTD 文件。例如:
观察操作系统的(反)斜杠的方向。然后,要检索该资源以在代码中使用,请使用:
This will allow you to store an arbitrary file type in your .jar and retrieve that later. When you package your .jar, include the DTD file explicitly. For example:
Watch the direction of (back)slashes for your OS. Then, to retrieve that resource for use in your code, use: