gpt4 book ai didi

java - HashMap 到 txt 文件 - 在 Java OOP 中写入键和值

转载 作者:行者123 更新时间:2023-12-02 04:06:49 26 4
gpt4 key购买 nike

我正在创建一个 ChatBox 程序,它响应在我的 Java 程序中输入的关键字。我有一个响应列表作为 HashMap 存储在外部 txt 文件中。我想创建一个方法,使我能够向 HashMap 添加新的关键字(key):responses(values),从而添加到外部 txt 文件。

我已经将 key: 值插入到此文本文件中,但我很难尝试以正确的格式向其中添加新的 key: 值,然后检索它们。

我有一个名为“addtoresponses()”的方法,它应该从该方法中获取字符串参数并将它们插入到 hashMap 中。然后,将使用另一个名为“listMap”的类的另一种方法将 hashMap 写入 txt 文件。

当我运行代码时,hashMap 确实会写入外部文本文件,因此这似乎可以工作(它将其写入外部文本文件,因此稍后可以由另一种方法使用)。然而,当我再次运行我的程序时,我立即收到一条错误消息,指出:

文件missing-map.txt中缺少对Hello的响应(hello是插入的 key )。

看来我添加的键:值丢失了我在方法中输入的内容的“值”部分。我被告知这可能是我的格式,即它应该以以下方式存储;

    **key
response all on one line of length
key
another response all on one line
etc.**

但我不清楚如何实现这一目标。我很确定这不是将 HashMap 插入 txt 文件的方法。我相信这就是我将值放入 HashMap 的方式,但我不太有信心。

如果有人可以查看我的代码并尝试看看我哪里出了问题,以及为什么会出现此错误消息以及如何修复它,我将不胜感激。

我已经在下面发布了代码;

教师模式的构造函数>>

public InstructorMode()
{
helper = new FileAssistance();
edits = new HashMap<String, String>();
}

添加到HashMap的方法(在InstructorMode类中)>>

public void addtoresponse(String key, String value)
{
edits.put(key, value);
helper.listaMap(edits, "missing-map.txt");
}

添加到外部txt文件的方法(名为FileAssistance的类)>>

    public void listaMap(HashMap<String, String> map, String filename)
{
if(map != null) {
try (FileWriter writer = new FileWriter(filename, true)) {
for(String key : map.keySet()) {
String value = map.get(key);
if(value == null) {
System.out.println("Warning: " +
key + " in listaMap.");
value = "Not sure";
}
writer.write(key.trim());
writer.write('\n');
writer.write(value.trim());
writer.write('\n');
}
writer.close();
}
catch(IOException e) {
System.out.println("Issue: " + filename +
" in listaMap");
}
}
else {
System.out.println("Null map passed to listaMap.");
}
}

如果有任何帮助,我们将不胜感激!

编辑 - 读取 HashMap 的代码 >>

  public HashMap<String, String> lookatM(String filename)
{
HashMap<String, String> map = new HashMap<>();
try (BufferedReader reader =
new BufferedReader(new FileReader(filename))) {
String word;
word = reader.readLine();
while(word != null) {
String response = reader.readLine();
if(response != null) {
response = response.trim();
if(response.length() != 0) {
map.put(word, response);
}
else {
System.out.println("Blank response for " +
word + " in file " +
filename);
}
}
else {
System.out.println("Missing response for " +
word + " in file " +
filename);
}
word = reader.readLine();
}
}
catch(IOException e) {
System.out.println("Problem reading file: " + filename +
" in LookatM");
}
return map;
}

最佳答案

您可以使用java.lang.Properties,它基本上是一个可以与.properties 文件交互的HashMap

属性文件只不过是一个由“=”分隔的键和值的列表

例如,您可以拥有一个包含以下内容的属性文件:

Name=Sauron    
Attitude=Nice in a peculiar way
[...]

您可以使用 Properties.load()Properties 对象中加载属性文件

如果您想添加更多键/值对,只需使用 Properties.setProperty() 方法

如果要将 Properties 对象的状态保存到支持属性文件中,只需使用 Properties.store

有关详细信息,请参阅 Properties javadoc

此外,here您可以找到有关如何在代码中使用属性的教程

关于java - HashMap 到 txt 文件 - 在 Java OOP 中写入键和值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34206567/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com