使用 Xerces XNI 的简单示例?
是否有一个使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
org.apache.xerces.xni.parser.XMLDocumentSource 是一个接口,因此简单的答案是您创建一个实现该接口的类。除非您确实出于某种原因想要破解 Xerces 本身,否则您可能不需要费心使用 XNI。
你想做什么?
您可能会通过查看 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?
You may get more mileage from looking at javax.xml.parsers in http://download.oracle.com/javase/6/docs/api/