How to remove extra empty lines from XML file?

前端 未结 9 1128
再見小時候
再見小時候 2020-12-08 11:22

In short; i have many empty lines generated in an XML file, and i am looking for a way to remove them as a way of leaning the file. How can i do that ?

For detailed

9条回答
  •  死守一世寂寞
    2020-12-08 11:55

    DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
    dbf.setIgnoringElementContentWhitespace(true);
    

提交回复
热议问题