我正在使用以下代码编写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不能解决问题,它实际上使文本带有新行(但不缩进).
任何人都可以解决此问题,而无需外部库?
解决方法:
您可能还必须指定要缩进的空格数量:
transformer.setOutputProperty("{http://xml.apache.org/xslt}indent-amount", "4");