我在我的 java 程序中使用属性文件。
目前,每当我需要属性文件中的某些属性时,我都会使用propertyFile.getProperty(propertyKeyName);
并将其放入某个变量中:String propertyName1 = propertyFile.getProperty(propertyKeyName);
有没有什么方法可以在没有显式定义变量 ( propertyName1
) 并使用它初始化的情况下getProperty()
,我可以将属性文件的所有 Key=Value 作为字符串变量获取,该变量已在我的程序中初始化为“String Key=Value”吗?
谢谢,钱德拉