似乎 Guava Table 只能存储一个交叉表,如:
Id year sales
1 2000 3000
2 2001 3045
3 2002 4000
table.put(1, 2000, 3000);
table.put(2,2001,3045);
table.put(3,2002,4000);
如果我有一张像
Id year month country provice sales
1 1999 1 US LA 3000
2 1999 2 IT MI 4000
3 2000 1 CH BJ 5000
而且我不能使用 JAVABEAN 来存储 recoder!