我有一个包含许多用户信息的.property文件,我希望得到一个数组中的所有用户名,但.getProperty只返回最后一个,我应该为每个使用a还是有其他方法可以它?
prop = new Properties();
prop.load(new FileInputStream("resource/GenLoadFlowEnv.properties"));
String env = (prop.getProperty("ambiente"));
答案 0 :(得分:0)
您可以简单地放置
ambiente = a,b,c
而不是获取阵列
String env = (prop.getProperty("ambiente"));
String[] arr = env.split(",");