I use a HashMap in order to store some keys and it's values like the following.
Map<String, String> map = new HashMap<String, String>();
map.put(key, value);
How can it be possible to store the data from HashMap before closing my app and retrieve them when I open the application next time in order to be able to add a new entry to the already entries. Can somebody help me?