Javaでファイルから数字の列を読みたい. 例えば:
945
922
922
480
480
819
819
289
386
TreeMap
これらの数字をキーとして入れたいと思います。各キーの値は、その行の番号になります。したがって、マップは次のようになります。
{(945:1),(922:2,3),(480:4,5)}
上記を試していますが、エラーが発生します。
ArrayList<Integer> clusterNums = new ArrayList<>();
String clusterLine;
TreeMap<Integer, ArrayList<Integer[]>> clusterMap = new TreeMap<Integer, ArrayList<Integer[]>>();
while ((clusterLine = clusterFile.readLine()) != null) {
clusterNums.add(Integer.parseInt(clusterLine));
}
for (int i = 1; i < clusterNums.size(); i++){
if (!clusterMap.containsKey(clusterNums.get(i-1))) {
clusterMap.put(clusterNums.get(i-1), new ArrayList<Integer[]>());
}
clusterMap.get(clusterNums.get(i-1)).add(i);
}
教えていただけますか?
ありがとう。