如何使用org.apache.commons.configuration.PropertiesConfiguration在分隔符之间创建没有空格的属性?

问题描述

需要使用org.apache.commons.configuration.PropertiesConfiguration编写属性文件,并且该文件的格式应为 variablename = variablevalue ,而分隔符之间不应有空格。有没有一种方法可以使用apache commons-configuration来实现?

我当前的实现:

PropertiesConfiguration conf = new PropertiesConfiguration("test.properties");
conf.setProperty("key1","value1");
conf.save();

结果:

key1 = value1

预期结果:

key1=value1

解决方法

文档在这里:https://commons.apache.org/proper/commons-configuration/userguide_v1.10/howto_properties.html

未经测试,但我想这样做:

Mailbox