在JEditorPane中缩进XML

时间:2015-01-19 15:22:14

标签: java xml swing sax

我正在尝试在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 ..

1 个答案:

答案 0 :(得分:2)

尝试使用它来格式化XML:http://java-sl.com/xml_editor_kit.html