从 org.w3c.dom.Node 获取行号和列号
我知道您可以从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
否(至少对于标准 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.