我想使用google-collection将以下文件保存在具有多个键和值的Hash中
Key1_1, Key2_1, Key3_1, data1_1, 0, 0
Key1_2, Key2_2, Key3_2, data1_2, 0, 0
Key1_3, Key2_3, Key3_3, data1_3, 0, 0
Key1_4, Key2_4, Key3_4, data1_4, 0, 0
前三列是不同的键,后两个整数是两个不同的值。我已经准备好了一个代码,这些代码将这些行分散开来。
import java.io.BufferedReader;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;
public class HashMapKey {
public static void main(String[] args) throws FileNotFoundException, IOException {
String inputFile = "inputData.txt";
BufferedReader br = new BufferedReader(new FileReader(inputFile));
String strLine;
while ((strLine = br.readLine()) != null) {
String[] line = strLine.replaceAll(" ", "").trim().split(",");
for (int i = 0; i < line.length; i++) {
System.out.print("[" + line[i] + "]");
}
System.out.println();
}
}
}
不幸的是,我不知道如何在google-collection中保存这些信息?
提前谢谢。
致以最诚挚的问候,
答案 0 :(得分:3)
您需要定义Key和Value类,以便定义
Map<Key, Value> map = new HashMap<Key, Value>();
注意Key类必须覆盖equals()和hashCode()。
Google Collections提供了少量帮助:Object.hashCode()可以定义哈希码,Maps.newHashMap()可以创建地图。
答案 1 :(得分:1)
您想拥有一个包含多个对象组成的键的地图吗?
http://commons.apache.org/collections/apidocs/org/apache/commons/collections/map/MultiKeyMap.html
您是否只想使用多个键别名来指向相同的值?
然后你可以查看答案How to implement a Map with multiple keys?
另外请说明您希望地图如何显示:)
答案 2 :(得分:0)
我有这段代码
import java.io.BufferedReader;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;
import java.util.HashMap;
public class HashMapKey {
public static void main(String[] args) throws FileNotFoundException, IOException {
String fFile = "inputData.txt";
BufferedReader br = new BufferedReader(new FileReader(fFile));
HashMap<String, HashMap<String, HashMap<String, String[]>>> mantleMap =
new HashMap<String, HashMap<String, HashMap<String, String[]>>>();
HashMap<String, HashMap<String, String[]>> middleMap =
new HashMap<String, HashMap<String, String[]>>();
HashMap<String, String[]> inMap =
new HashMap<String, String[]>();
String strLine;
while ((strLine = br.readLine()) != null) {
String[] line = strLine.replaceAll(" ", "").trim().split(",");
for (int i = 0; i < line.length; i++) {
System.out.print("[" + line[i] + "]");
}
inMap.put(line[2], new Integer[]{line[3], line[4]});
middleMap.put(line[1], inMap);
mantleMap.put(line[0], middleMap);
System.out.println();
}
String[] values = mantleMap.get("Key1_1").get("Key2_1").get("Key3_1");
for (String h : values) {
System.out.println(h);
}
}
}
但遗憾的是我无法打印出HashMaps内容。
如何打印HashMap内容?