使用 Xerces XNI 的简单示例?

发布于 2024-08-04 00:41:55 字数 229 浏览 3 评论 0原文

是否有一个使用 Xerces XNI 的简单示例?我正在查看示例代码,无法弄清楚它正在做什么,并且不想只是剪切和删除它。粘贴到我的应用程序中。例如,我不知道如何创建 org.apache.xerces.xni.parser.XMLDocumentSource 的实例。

Is there a simple example somewhere of using Xerces XNI? I'm looking at the sample code and can't make heads or tails of what it's doing, and don't want to just cut & paste into my application. For example, I can't figure out how to create an instance of org.apache.xerces.xni.parser.XMLDocumentSource.

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

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

发布评论

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

评论(1

何以畏孤独 2024-08-11 00:41:56

org.apache.xerces.xni.parser.XMLDocumentSource 是一个接口,因此简单的答案是您创建一个实现该接口的类。除非您确实出于某种原因想要破解 Xerces 本身,否则您可能不需要费心使用 XNI。

你想做什么?

如果 XML 应用程序程序员只想使用 JAXP、DOM 和 SAX 等标准接口连接到 Xerces2 解析器,则无需学习 XNI (http://xerces.apache.org/xerces2-j/xni.html)

您可能会通过查看 http://download.oracle.com/javase/6/docs/api/

org.apache.xerces.xni.parser.XMLDocumentSource is an interface, so the simple answer is that you'd create a class implementing that interface. Unless you actually want to hack Xerces itself for some reason, you probably don't need to bother with XNI.

What is it that you want to do?

There is no need for an XML application programmer to learn XNI if they only intend to interface to the Xerces2 parser using standard interfaces like JAXP, DOM, and SAX (http://xerces.apache.org/xerces2-j/xni.html)

You may get more mileage from looking at javax.xml.parsers in http://download.oracle.com/javase/6/docs/api/

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