Java读取Properties
常⽤⽅法
- public Object setProperty(String key, String value) : 保存⼀对属性。
- public String getProperty(String key) :使⽤此属性列表中指定的键搜索属性值。
- public Set stringPropertyNames() :所有键的名称的集合。
- public void load(InputStream inStream) : 从字节输⼊流中读取键值对。
示例1:
// 创建属性集对象
Properties properties = new Properties();
// 添加键值对元素
properties.setProperty("filename", "a.txt");
properties.setProperty("length", "123");
properties.setProperty("location", "D:\\a.txt");
// 打印属性集对象
System.out.println(properties);
// 通过键,获取属性值
System.out.println(properties.getProperty("filename"));
System.out.println(properties.getProperty("length"));
System.out.println(properties.getProperty("location"));
// 遍历属性集,获取所有键的集合
Set<String> strings = properties.stringPropertyNames();
// 打印键值对
for (String key : strings ) {
System.out.println(key+" -- "+properties.getProperty(key));
}
示例2:
// 创建属性集对象
Properties pro = new Properties();
// 加载⽂本中信息到属性集
pro.load(new FileInputStream("read.txt"));
// 遍历集合并打印
Set<String> strings = pro.stringPropertyNames();
for (String key : strings ) {
System.out.println(key+" -- "+pro.getProperty(key));
}
⼩贴⼠:⽂本中的数据,必须是键值对形式,可以使⽤空格、等号、冒号等符号分隔。