1

是否可以从 Transformer 对象格式化输出 XML 文件。

到目前为止,我得到了这些作为输出:

<A name="a" type="a">
     <B name="b" type="b" width="100" height="100" />
     <B name="b" type="b" width="100" height="200" />
     <B name="b" type="b" width="100" height="300" />
     <B name="b" type="b" width="100" height="400" />
</A>

但我想要看起来像这样的东西:

<A name="a"
   type="a">
   <B name="b"
      type="b"
      width="100"
      height="100" />
   <B name="b"
      type="b"
      width="100"
      height="200" />
   <B name="b"
      type="b"
      width="100"
      height="300" />
   <B name="b"
      type="b"
      width="100"
      height="400" />
</A>

这是我的变压器代码片段:

TransformerFactory transformerFactory = TransformerFactory.newInstance();
Transformer transformer = transformerFactory.newTransformer();
transformer.setOutputProperty(OutputKeys.INDENT, "yes");
DOMSource source = new DOMSource(doc);
StreamResult result = new StreamResult(file);
transformer.transform(source, result);
4

1 回答 1

0

我会将 xml 保存在 tmp 文件中,然后逐行读取并对其进行格式化并保存。单行示例

    String line = "    <B name=\"b\" type=\"b\" width=\"100\" height=\"100\" />";
    String indent = line.startsWith("<A") ? "   " : "       "; 
    line = line.replaceAll("(type|width|height)", "\n" + indent +  "$1");
    System.out.println(line);

输出

<B name="b" 
   type="b" 
   width="100" 
   height="100" />
于 2013-05-16T02:22:48.057 回答