如何在java中读取带有空格的属性名称
2022-09-02 05:33:47
我正在尝试使用以下代码加载属性文件中存在的所有属性名称:
for(Enumeration<String> en = (Enumeration<String>) prop.propertyNames();en.hasMoreElements();){
String key = (String)en.nextElement();
System.out.println("Property name is "+key);
}
但是我的属性文件有以下内容:
username=
password=
Parent file name=
Child file name =
运行代码后,我得到的输出为:
username password Parent Child
如果属性名称包含空格,则仅返回第一个单词。
任何人都可以告诉我如何做到这一点吗?