I'm using the Apache Commons Configuration. How can I add a property (String with blanks) to the configuration that I only get one single property?
config.addProperty("date", "08.05.2011, 15:20");
leads to two properties:
<date>08.05.2011</date>
<date>15:20</date>
Thank you very much.