Multiple values in java.util.Properties

Try:

foo=1,2

String[] foos = properties.getProperty("foo").split(",");

Leave a Comment