java-使用Transformer缩进XML文本

我正在使用以下代码编写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");
上一篇:Python中可能存在混合缩进?


下一篇:python中IF-ELSE块的缩进