在Java中,可以通過Properties類來讀取和寫入屬性文件。下面是Properties類的使用示例:
Properties properties = new Properties();
try {
FileInputStream fileInputStream = new FileInputStream("config.properties");
properties.load(fileInputStream);
fileInputStream.close();
} catch (IOException e) {
e.printStackTrace();
}
String value = properties.getProperty("key");
System.out.println(value);
properties.setProperty("key", "value");
try {
FileOutputStream fileOutputStream = new FileOutputStream("config.properties");
properties.store(fileOutputStream, "Config Properties");
fileOutputStream.close();
} catch (IOException e) {
e.printStackTrace();
}
以上就是使用Properties類讀取和寫入屬性文件的基本步驟。需要注意的是,屬性文件的格式為鍵值對,如"key=value",每個屬性占一行。