标签: java xml scala
使用Jackson进行JSON处理的一个好处是:
all modes [i.e. streaming, tree, and binding to Java objects] fully supported, and best of all, in such a way that it is easy to convert between modes, mix and match. For example, to process very large JSON streams, one typically starts with a streaming parser, but uses data binder to bind sub-sections of data into Java objects: this allows processing of huge files without excessive memory usage, but with full convenience of data binding.
是否有适用于Java或Scala的XML处理器,它们也支持这种情况?
答案 0 :(得分:1)
也许你想查看Smooks
http://smooks.org
HTH