Java HashMap key value storage and retrieval(Java HashMap 键值存储与检索)
问题描述
我想存储值并从 Java HashMap 中检索它们.
I want to store values and retrieve them from a Java HashMap.
这是我目前所拥有的:
public void processHashMap()
{
HashMap hm = new HashMap();
hm.put(1,"godric gryfindor");
hm.put(2,"helga hufflepuff");
hm.put(3,"rowena ravenclaw");
hm.put(4,"salazaar slytherin");
}
我想从 HashMap 中检索所有键和值作为 Java 集合或实用程序集(例如 LinkedList
).
I want to retrieve all Keys and Values from the HashMap as a Java Collection or utility set (for example LinkedList
).
如果我知道密钥,我知道我可以得到值,如下所示:
I know I can get the value if I know the key, like this:
hm.get(1);
有没有办法以列表的形式检索键值?
Is there a way to retrieve key values as a list?
推荐答案
Java Hashmap 键值示例:
public void processHashMap() {
//add keys->value pairs to a hashmap:
HashMap hm = new HashMap();
hm.put(1, "godric gryfindor");
hm.put(2, "helga hufflepuff");
hm.put(3, "rowena ravenclaw");
hm.put(4, "salazaar slytherin");
//Then get data back out of it:
LinkedList ll = new LinkedList();
Iterator itr = hm.keySet().iterator();
while(itr.hasNext()) {
String key = itr.next();
ll.add(key);
}
System.out.print(ll); //The key list will be printed.
}
这篇关于Java HashMap 键值存储与检索的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Java HashMap 键值存储与检索
- Safepoint+stats 日志,输出 JDK12 中没有 vmop 操作 2022-01-01
- 将log4j 1.2配置转换为log4j 2配置 2022-01-01
- Spring Boot连接到使用仲裁器运行的MongoDB副本集 2022-01-01
- value & 是什么意思?0xff 在 Java 中做什么? 2022-01-01
- 如何使用WebFilter实现授权头检查 2022-01-01
- C++ 和 Java 进程之间的共享内存 2022-01-01
- Eclipse 插件更新错误日志在哪里? 2022-01-01
- Jersey REST 客户端:发布多部分数据 2022-01-01
- 从 finally 块返回时 Java 的奇怪行为 2022-01-01
- Java包名称中单词分隔符的约定是什么? 2022-01-01