从 org.w3c.dom.Node 获取行号和列号

发布于 2024-09-28 08:36:42 字数 93 浏览 3 评论 0原文

我知道您可以从 org.xml.sax.SAXParseException 获取行号和列号。

是否可以从 org.w3c.dom.Node 获取行号和列号?

I know that you can get the line number and column number from a org.xml.sax.SAXParseException.

Is it possible to get the line number and column number from a org.w3c.dom.Node?

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

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

发布评论

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

评论(1

情未る 2024-10-05 08:36:42

否(至少对于标准 DOM API 而言不是)。

DOM 树与特定的序列化无关。事实上,输出 DOM 树的方法有多种,并且它们可能会针对元素行号给出不同的结果。

当您将 XML 文档解析为 DOM 时,如果出现错误,您可能会收到带有行号的 SAXParseException。但解析后信息就丢失了。

No (at least not with the standard DOM API).

DOM trees are not related to a specific serialization. In fact, there are various ways to output a DOM tree, and they might give different results for an element line number.

When you parse an XML document into a DOM, you might be able to get a SAXParseException with a line number if there is an error. But the information is lost after parsing.

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