我使用 String 的 TreeMap 作为 Key,将 value 作为另一个 Map。我的地图保存 Excel 工作表数据。 Map<String, Map<String, ArrayList<String>>> excelData = new TreeMap<String, Map<String, ArrayList<String>>>(
String.CASE_INSENSITIVE_ORDER);我的 excelData 对象大小为 3。我有一个名为“Dates”的 TreeMapEntry,大小为 2。我想检索此条目并将其合并为单个条目。我怎样才能做到这一点?
1 回答
12345678_0001
TA贡献1802条经验 获得超5个赞
if(excelData.containsKey(key)) {
// Get the value associated with a given key in a TreeMap
Map name = excelData.get(key);
System.out.println("excelData with key " + key + " : " + name);
/* Now you can update this retrieved value. */
}
添加回答
举报
0/150
提交
取消