猿问

Java获取TreeMap的TreeMapEntry和HashMapNode

我使用 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。我想检索此条目并将其合并为单个条目。

我怎样才能做到这一点?


哔哔one
浏览 127回答 1
1回答

12345678_0001

if(excelData.containsKey(key)) {&nbsp; &nbsp; &nbsp; &nbsp; // Get the value associated with a given key in a TreeMap&nbsp; &nbsp; &nbsp; &nbsp; Map name = excelData.get(key);&nbsp; &nbsp; &nbsp; &nbsp; System.out.println("excelData with key " + key + " : " + name);&nbsp; &nbsp; &nbsp;/* Now you can update this retrieved value. */&nbsp; &nbsp; }
随时随地看视频慕课网APP

相关分类

Java
我要回答