AddProperty, including spaces with XMLConfiguration

I am using Apache Commons configuration. How to add a property (String with spaces) to the configuration in which I get only one property?

config.addProperty("date", "08.05.2011, 15:20");

leads to two properties:

<date>08.05.2011</date> <date>15:20</date>

Many thanks.

+3
source share
1 answer

Under the assumption, I would say that you are probably using your own space list separator instead of the default comma separator.

http://commons.apache.org/configuration/howto_basicfeatures.html#List_handling setProperty addProperty , getProperty. , , - addProperty, .

setListDelimiter ?

+3

All Articles