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.
source
share