I have a HashMap in the following format.
HashMap<String, List<String>> map
I'm trying without any luck to find the best way to write this out to a property file, is this possible? I had no problem with a HashMap<String, String> hashmap, but when the value is a List I can't figure out the best way to store this out. I Don't care if it's out in xml format or any other format, just so I can easily open the file and have it serialized or whatever back into a hashmap.
Thanks for any direction
Listto comma separated. e.g.value1,value2,value3,value4and add it to your Properties object.