我使用此代码启用换行符:
transformer.setOutputProperty(OutputKeys.INDENT, "yes");
transformer.setOutputProperty("{http://xml.apache.org/xslt}indent-amount", "2");
但我得到以下输出:
<?xml version="1.0" encoding="UTF-8"?><root>
<child>aaaa</child>
</root>
我想在根元素之前有换行符。我该怎么办?