我正在尝试在Java JEditorPane中缩进XML,因此:
<mytag>
<tag1>
</tag1>
</mytag>
变为:
<mytag>
<tag1>
</tag1>
</mytag>
我尝试构建一个DocumentBuilder对象,然后使用:
进行转换serializer.setOutputProperty(OutputKeys.INDENT, "yes")
serializer.setOutputProperty("{http://xml.apache.org/xslt}indent-amount", "4");
然后在JEditorPane中设置文本:
editorPane.setText(do serialization and transformation methods here)
但它不会缩进XML ..