I know StAX is a pull parsing ... but i m wondering is there a possibility to save root cursor location/context.. visit child Cursor ...and later rewind root cursor to a saved location/context ?

Thanks

有帮助吗?

解决方案

Nope, there is no support for doing that in Stax API, or in Woodstox' extended API (stax2-api).

You could use XMLEventReader, store events, if that helps. It is still more efficient than re-parsing, although uses more memory than just holding on to underlying XML content.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top