Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我知道您可以从 org.xml.sax.SAXParseException 中获取行号和列号。
是否可以从 org.w3c.dom.Node 获取行号和列号?
不(至少不使用标准 DOM API)。
DOM 树与特定的序列化无关。事实上,有多种方式可以输出 DOM 树,并且对于元素行号,它们可能会给出不同的结果。
当您将 XML 文档解析为 DOM 时,如果出现错误,您可能会获得带有行号的 SAXParseException。但是解析后信息丢失了。