How to get values and keys from HashMap?(如何从 HashMap 中获取值和键?)
问题描述
我正在用 Java 编写一个简单的编辑文本.当用户打开它时,将在 JTabbedPane
中打开一个文件.我做了以下保存打开的文件:
I'm writing a simple edit text in Java. When the user opens it, a file will be opened in JTabbedPane
. I did the following to save the files opened:
HashMap
Tab
将接收值的地方,例如:文件文件、JTextArea 容器、JTabbedPane 选项卡
.
Where Tab
will receive the values, such as: File file, JTextArea container, JTabbedPane tab
.
我有一个名为 Tab
的类:
I have a class called Tab
:
public Tab(File file, JTextArea container, JTabbedPane tab)
{
this.file = file;
this.container = container;
this.tab = tab;
tab.add(file.getName(), container);
readFile();
}
现在,在这个 SaveFile
类中,我需要获取存储在 HashMap
中的 Tab
值.我该怎么做?
Now, in this SaveFile
class, I need get the Tab
values stored in the HashMap
. How can I do that?
推荐答案
从地图中获取所有值:
for (Tab tab : hash.values()) {
// do something with tab
}
从地图中获取所有条目:
To get all the entries from a map:
for ( Map.Entry<String, Tab> entry : hash.entrySet()) {
String key = entry.getKey();
Tab tab = entry.getValue();
// do something with key and/or tab
}
Java 8 更新:
处理所有值:
hash.values().forEach(tab -> /* do something with tab */);
处理所有条目:
hash.forEach((key, tab) -> /* do something with key and tab */);
这篇关于如何从 HashMap 中获取值和键?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何从 HashMap 中获取值和键?
基础教程推荐
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- 降序排序:Java Map 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01