在Java中,可以使用java.util.Properties
類來讀取和操作屬性配置文件。下面是一些常見的使用方法:
Properties
對象并加載配置文件:Properties props = new Properties();
try(InputStream inputStream = new FileInputStream("config.properties")) {
props.load(inputStream);
}
String value = props.getProperty("key");
props.setProperty("key", "value");
try(OutputStream outputStream = new FileOutputStream("config.properties")) {
props.store(outputStream, "Configurations");
}
上述代碼中,config.properties
是配置文件的名稱,可以根據實際情況進行替換。配置文件的內容如下所示:
key1=value1
key2=value2
你可以根據需要在配置文件中添加或修改屬性的值。