i want to retrieve k,v-pairs from a hashmap. the entrys are like this:
a = 3,4
b = 5,6
and so on. i need combinations of these values.
a=3, b=5.
a=3, b=6.
a=4, b=5.
a=4, b=6.
I don't know how many keys and how many entrys the values have. with entryset i can get the values but not combinations. it looks like recursion but how?
Here's my code:
HashMap<String, String[]> map = new HashMap<String, String[]>();
BufferedReader file = new BufferedReader(new FileReader("test.txt"));
String str;
while ((str = file.readLine()) != null) {
... logic
map.put(key, value);
}
System.out.println("number of keys: " + map.size());
for(Entry<String, String[]> entry : map.entrySet()) {
for(String value : entry.getValue()) {
System.out.println(entry.getKey() + ": " + value);
}
}
file.close();