SAXParser 捕获字节数/偏移量
就像这个问题中一样,我试图记录解析时的确切位置XML。
我已经使用传递给 setDocumentLocator()
的 SAX Locator
来记录行号和列号,但这并没有给出距文件开头的偏移量。有没有办法找到 SAX 解析器到目前为止读取的字节数或每行的偏移量,而无需重新读取整个文件?
Like in this question I am trying to record the exact position when parsing XML.
I already use the SAX Locator
passed to setDocumentLocator()
to record the line and column number but that doesn't give the offset from the beginning of the file. Is there a way to find the number of bytes read so far by the SAX parser or offset of each line without re-reading the whole file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
假设,您可以使用 Apache commons IO 中的 CountingInputStream。
Hypothetically, you can use the CountingInputStream from Apache commons IO.
我发现另一个问题和答案 建议使用 XMLStreamReader 而不是 SAXParser,因为它有
getLocation().getCharacterOffset()
。它已经有我所需要的了。I found another question and answer which suggests using an XMLStreamReader instead of SAXParser because it has
getLocation().getCharacterOffset()
instead. It already has exactly what I need.