溫馨提示×

Java Properties類加載方法

小樊
83
2024-08-23 23:20:31
欄目: 編程語言

在Java中,可以使用Properties類加載配置文件。Properties類是Hashtable的子類,用于處理屬性文件。以下是加載屬性文件的方法:

  1. 使用load()方法加載屬性文件:
Properties props = new Properties();
try (InputStream input = new FileInputStream("config.properties")) {
    props.load(input);
} catch (IOException e) {
    e.printStackTrace();
}
  1. 使用load()方法加載資源文件:
Properties props = new Properties();
try (InputStream input = getClass().getResourceAsStream("/config.properties")) {
    props.load(input);
} catch (IOException e) {
    e.printStackTrace();
}
  1. 使用load()方法加載Reader對象:
Properties props = new Properties();
try (Reader reader = new FileReader("config.properties")) {
    props.load(reader);
} catch (IOException e) {
    e.printStackTrace();
}
  1. 使用setProperty()方法設置屬性:
Properties props = new Properties();
props.setProperty("key", "value");
  1. 使用getProperty()方法獲取屬性:
String value = props.getProperty("key");

這些方法可以幫助我們在Java程序中加載和處理配置文件。

0