在Java中,可以使用Properties類加載配置文件。Properties類是Hashtable的子類,用于處理屬性文件。以下是加載屬性文件的方法:
Properties props = new Properties();
try (InputStream input = new FileInputStream("config.properties")) {
props.load(input);
} catch (IOException e) {
e.printStackTrace();
}
Properties props = new Properties();
try (InputStream input = getClass().getResourceAsStream("/config.properties")) {
props.load(input);
} catch (IOException e) {
e.printStackTrace();
}
Properties props = new Properties();
try (Reader reader = new FileReader("config.properties")) {
props.load(reader);
} catch (IOException e) {
e.printStackTrace();
}
Properties props = new Properties();
props.setProperty("key", "value");
String value = props.getProperty("key");
這些方法可以幫助我們在Java程序中加載和處理配置文件。