讓我先說我有一個文件。欲瞭解更多信息,請檢查它here。HashMap Java無法顯示多個值
我已經在hashmap中添加了多個值的邊。我加入這段代碼檢查:
map.put(nodes.get(i), edges);
System.out.println(nodes.get(i) + " " + map.get(nodes.get(i)));
增加每次進入地圖後,我檢查它的時候了,如果成功添加它。是的,它的工作。
下面是輸出:
a0 [[email protected]]
a1 [[email protected], [email protected], [email protected]]
a2 [[email protected], [email protected], [email protected]]
a3 [[email protected], [email protected], [email protected]]
但是,創造另一種方法來顯示地圖的內容時,我發現地圖是空的。下面的代碼:
public void viewFile() {
for(int i=0; i<nodes.size();i++) {
System.out.println(nodes.get(i) + " " + this.map.get(nodes.get(i)));
}
}
上述代碼的輸出是這樣的:
a0 []
a1 []
a2 []
a3 []
可能是什麼可能的原因?我真的很困惑,爲什麼會發生這種情況。
的代碼,這裏的簡化版本(如果遵守,這將導致錯誤,因爲我編輯的一些地方認爲是不必要的了):
class Reader {
HashMap<String, Vertex> vertexList;
Map<String, ArrayList<Edge>> map;
ArrayList<String> nodes;
ArrayList<Edge> edges;
public Reader(String fileName) {
vertexList = new HashMap<String, Vertex>();
map = new HashMap<String, ArrayList<Edge>>();
nodes = new ArrayList<String>();
edges = new ArrayList<Edge>();
readFile(fileName);
}
private void readFile(String fileName) {
try{
FileReader file = new FileReader(fileName);
Scanner sc = new Scanner(file);
int i = 0;
while (sc.hasNextLine()) {
input.add(sc.nextLine());
i++;
}
setNodes();
setVertices();
System.out.println();
file.close();
} catch(Exception e){
System.out.println(e);
}
}
public void setNodes() {
System.out.println();
for(int i=0; i<input.size(); i++) {
line = this.input.get(i);
nodes.add(line.substring(0,line.indexOf("-")).trim());
adjLine.add(line.substring(line.indexOf("-")+1).trim());
}
}
private void setVertices() {
String[] listEdges;
for(int i=0; i<nodes.size(); i++) {
//if vertex does not exist, create it
if(vertexList.containsKey(nodes.get(i))) {
vertexList.put(nodes.get(i), new Vertex(nodes.get(i)));
}
line = adjLine.get(i);
//separate adj edges to *
if(line.contains("*")) {
listEdges = line.split("\\*");
} else {
listEdges = new String[1];
listEdges[0] = line;
}
//add edges to specified vertex
for(int j=0; j < listEdges.length; j++) {
String[] word = listEdges[j].split(",");
edges.add(new Edge(vertexList.get(word[0]),Double.parseDouble(word[1])));
}
map.put(nodes.get(i), edges);
System.out.println(nodes.get(i) + " " + map.get(nodes.get(i)));
edges.clear();
}
}
我們需要看到更多的你代碼,特別是構建地圖的代碼。 – NPE 2013-03-19 06:21:13
@princepiero如何以及在哪裏調用viewFile()方法? – Lakshmi 2013-03-19 06:25:26
hi @NPE我編輯了這個問題。 :) – princepiero 2013-03-19 06:28:47