Java 中的 StAX XML 格式

2022-01-12 00:00:00 xml formatting java stax woodstox

是否可以使用 StAX(特别是 woodstox)使用换行符和制表符格式化输出 xml,即格式:

<上一页><元素1><元素2>一些数据</元素2></元素1>

代替:

<element1><element2>someData</element2></element1>

如果这在woodstox 中是不可能的,是否还有其他轻量级库可以做到这一点?

解决方案

通过JDK:transformer.setOutputProperty(OutputKeys.INDENT, "yes");.

Is it possible using StAX (specifically woodstox) to format the output xml with newlines and tabs, i.e. in the form:

<element1>
  <element2>
   someData
  </element2>
</element1>

instead of:

<element1><element2>someData</element2></element1>

If this is not possible in woodstox, is there any other lightweight libs that can do this?

解决方案

Via the JDK: transformer.setOutputProperty(OutputKeys.INDENT, "yes");.

相关文章