查找 XML 文档中元素的确切位置
我正在寻找一种方法来查找 XML 文档中元素的确切位置。我使用 XOM 解析我的文档并以通常的方式处理它。棘手的是,在 XML 文档中,嵌入了一些脚本(只是文本节点),如果脚本失败(解析、逻辑等),我想向用户(编写这些脚本的人)报告确切的行号剧本已经公布。
最理想的方法是这样的:
int scriptLine = someElement.getFirstChildElement("script").getDeclaringLineNumber();
遗憾的是,无论有或没有 XOM,我都找不到一种方法来做到这一点。如果有人有想法或已经做过类似的事情 - 我可以需要一些帮助。 :-)
I'm looking for a way to find the exact location of an Element within a XML-Document. I parse my Document with XOM and process it in the usual way. The tricky thing is, that in the XML document, some scripts are embedded (just text nodes) and in the case the scripts fail (parsing, logic, whatever) I want to report the user (which writes those scripts) the exact line number the script has been declared.
The most ideal way would be something like this:
int scriptLine = someElement.getFirstChildElement("script").getDeclaringLineNumber();
Sadly I couldn't find a way to do this, with or without XOM. If anyone has ideas or has already done something like this - I could use some help. :-)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
很久以前我就用 JDOM 做过这个。通过扩展 SAXBuilder 并拦截 startElement() 和 endElement() 回调,可以使用 SAX 定位器使用行号信息更新专门的 Element 实现。代码应该仍然存在......是的在这里:
http:// jdom.org/dist/binary/jdom-contrib-1.1.1.zip
在 src 目录中搜索 LineNumberSAXBuilder。
我相信 XOM 有一个 NodeFactory 可以以相同的方式扩展。
Way back I did this with JDOM. By extending the SAXBuilder and intercepting the startElement() and endElement() callback, specialized Element implementations could be updated with line number information usig the SAX Locator. The code should still be around .... yes here:
http://jdom.org/dist/binary/jdom-contrib-1.1.1.zip
Search for LineNumberSAXBuilder in the src directory.
I belive XOM has a NodeFactory that could be extended in the same manner.