Answer I just found what I was looking for:
Properties properties = new Properties();
FileInputStream in = new FileInputStream("/somePath/file.map");
properties.load(in);
in.close();
HashMap<String, String> propMap = new HashMap<String, String>((Map) properties);
This allowed me to get the opened property data back into the hashmap with out needing to know the property names.
original question.
I have the following code that writes out the results of a HashMap. I'm wondering the easiest way to open this property back up and pull the data back into a HashMap, the putAll was a nice way to get the data into the property and store the data. I don't see a getAll to retrieve it, and the HashMap Key/Value data was not known before the hashmap was created so can't just retrieve by property name. The data after it was created will be static, so I could physically open the file written based off the hashmap to get the property names, but would rather not have to do it that way. Thanks for any help.
Properties properties = new Properties();
properties.putAll(mapTabSets);
properties.store(new FileOutputStream("/somePath/file.map"),"Java properties);