可以通過Map的entrySet()方法來遍歷Map并獲取鍵值對的值。示例代碼如下:
Map<String, Integer> map = new HashMap<>();
map.put("A", 1);
map.put("B", 2);
map.put("C", 3);
for (Map.Entry<String, Integer> entry : map.entrySet()) {
String key = entry.getKey();
Integer value = entry.getValue();
System.out.println("Key: " + key + ", Value: " + value);
}
上述代碼中,通過entrySet()方法獲取Map中的鍵值對集合,然后遍歷鍵值對集合,通過getKey()和getValue()方法分別獲取鍵和值。