删除Jdom2生成的XML中的额外新行

时间:2016-05-27 12:38:04

标签: java xml jdom-2

我在Jdom2中使用了getPrettyFormat(),它给了我一个XML文件,如下所示。

<startDate>2016-05-27</startDate>

<endDate>2021-05-27</endDate>

<enrollBeginDate>2016-05-27</enrollBeginDate>

<enrollEndDate>2016-05-27</enrollEndDate>

但我需要删除标签之间的额外新行。所以输出应该如下;

<startDate>2016-05-27</startDate>
<endDate>2021-05-27</endDate>
<enrollBeginDate>2016-05-27</enrollBeginDate>
<enrollEndDate>2016-05-27</enrollEndDate>

我的代码;

Document xmlMessage = new Document(eleCourse);
XMLOutputter xmlOutput = new XMLOutputter();
xmlOutput.setFormat(Format.getPrettyFormat().setOmitDeclaration(true).set);
return xmlOutput.outputString(xmlMessage);

请帮忙。

0 个答案:

没有答案