我正在使用以下代码编写XML文件:
Source source = new DOMSource(rootElement);
Result result = new StreamResult(xmlFile);
Transformer transformer = TransformerFactory.newInstance().newTransformer();
transformer.setOutputProperty(OutputKeys.INDENT, "yes");
transformer.transform(source, result);
这是输出文件:
<?xml version="1.0" encoding="UTF-8"?>
<feature-sequences>
<sequence>
<initial-frame>0</initial-frame>
<points>
<point>
<x>274.0</x>
<y>316.0</y>
</point>
...
我想要缩进此文件,例如:
<?xml version="1.0" encoding="UTF-8"?>
<feature-sequences>
<sequence>
<initial-frame>0</initial-frame>
<points>
<point>
<x>274.0</x>
<y>316.0</y>
</point>
...
我的代码中对setOutputProperty
的调用无法解决问题,它实际上使用新行(但不缩进)来生成文本。
任何人都有解决方案,而不需要外部库?
答案 0 :(得分:6)
您可能还必须指定缩进的空格量:
transformer.setOutputProperty("{http://xml.apache.org/xslt}indent-amount", "4");