java properties类怎么使用

avatar
作者
筋斗云
阅读量:2

在Java中,可以通过Properties类来读取和写入属性文件。下面是Properties类的使用示例:

  1. 创建Properties对象并加载属性文件:
Properties properties = new Properties(); try { FileInputStream fileInputStream = new FileInputStream("config.properties"); properties.load(fileInputStream); fileInputStream.close(); } catch (IOException e) { e.printStackTrace(); } 
  1. 读取属性值:
String value = properties.getProperty("key"); System.out.println(value); 
  1. 设置属性值:
properties.setProperty("key", "value"); 
  1. 保存属性文件:
try { FileOutputStream fileOutputStream = new FileOutputStream("config.properties"); properties.store(fileOutputStream, "Config Properties"); fileOutputStream.close(); } catch (IOException e) { e.printStackTrace(); } 

以上就是使用Properties类读取和写入属性文件的基本步骤。需要注意的是,属性文件的格式为键值对,如"key=value",每个属性占一行。

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!