<pre name="code" class="java">package multiMap;
import java.util.Collection;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
import java.util.Set;
public class Mulmap {
public static void main(String[] args) {
HashMap<HashMap<Integer, Integer>, Integer> map = new HashMap<>();
// ***********************************************
HashMap<Integer, Integer> temp1 = new HashMap<>();
temp1.put(11, 111);
HashMap<Integer, Integer> temp2 = new HashMap<>();
temp2.put(22, 222);
HashMap<Integer, Integer> temp3 = new HashMap<>();
temp3.put(33, 333);
// ***********************************************
map.put(temp1, 1111);
map.put(temp2, 2222);
map.put(temp3, 3333);
Set<HashMap<Integer, Integer>> keys = map.keySet();
for (HashMap<Integer, Integer> s : keys) {
Collection<?> entries = s.entrySet();
Iterator<?> it = entries.iterator();
while (it.hasNext()) {
Map.Entry e = (Map.Entry) it.next();
System.out.println("Key = " + e.getKey() + ", Value = "
+ e.getValue() + ", OutValue = " + map.get(s));
}
}
}
}
在mahout推荐系统中,datamodel文件需3个参数,即(uid,itemId,value),通过这个计算就可以很方面的自己计算value值,用这个方法对数据处理后可以作为dabamodel的输入。