查找 XML 文档中元素的确切位置

发布于 2024-12-05 14:58:27 字数 342 浏览 1 评论 0原文

我正在寻找一种方法来查找 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 技术交流群。

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

发布评论

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

评论(1

老街孤人 2024-12-12 14:58:27

很久以前我就用 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.

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