gpt4 book ai didi

java - 创建一个属性,并将名称作为字符串中的值

转载 作者:行者123 更新时间:2023-12-01 23:12:16 26 4
gpt4 key购买 nike

我有一个String,其中包含一个值,例如“test”。现在我需要创建一个 Properties ,其名称为 String 的值。需要明确的是,

String propName = "test";

我需要可以创建以下内容的逻辑:

Properties test = new Properties();

此要求的原因:我有一个 String 数组,必须创建其Properties

最佳答案

Reason for this Requirement : I have an array of String, whose Properties have to be created.

您可以使用 Map<String, Properties> 来实现这一目标。

Map<String, Properties> myMap = new HashMap<>();
myMap.put("test", new Properties());

关于java - 创建一个属性,并将名称作为字符串中的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21726887/

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