gpt4 book ai didi

java - hashmap 的属性

转载 作者:行者123 更新时间:2023-11-30 03:25:56 26 4
gpt4 key购买 nike

我正在尝试将属性文件中的所有值重写到 HashMap 中,但是当我尝试运行此代码时

for (String keys: properties.entrySet())
{
hMap.put(keys, properties.get(keys));
}

我收到以下错误。

The method put(String, String) in the type Map<String,String> is not applicable for the arguments (Map.Entry<Object,Object>, Object)

我知道一个是字符串类型,一个是对象,但我不知道如何修复它,因为我对编程还很陌生......

最佳答案

您将获得 Map.Entry 作为 Properties.entrySet() 的返回类型。

for (Map.Entry entry: properties.entrySet(
{
hMap.put((String)entry.getKey(), (String)entry.getValue());
}

关于java - hashmap<String, String> 的属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30227921/

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