I have a HashMap
which contains Set<String>
as Key and Value,
HashMap<Set<String>, Set<String>> mapData = new HashMap<Set<String>, Set<String>>();
If I want to write this HashMap
object into a file, Whats is the best way to do it. Also I want to read this back from that file as HashMap<Set<String>, Set<String>>
.