I want to populate a HashMap using the Properties class. I want to load the entries in the .propeties file and then copy it into
HashMap
Properties
.propeties
Use .entrySet()
.entrySet()
for (Entry entry : properties.entrySet()) { map.put((String) entry.getKey(), (String) entry.getValue()); }