How to remove the white spaces between tags in XML

后端 未结 7 916
太阳男子
太阳男子 2020-12-06 18:00

I created an XML document using Java in my android application. I have to call a web service in my application and pass this XML as an argument there. But my problem is ther

7条回答
  •  鱼传尺愫
    2020-12-06 18:37

    Method documentBuilderFactory.setIgnoringElementContentWhitespace() controls whitespace creation. Use this before you create a DocumentBuilder.

    dbfac.setIgnoringElementContentWhitespace(true);
    

提交回复
热议问题