91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

java中properties配置文件如何使用

小億
95
2023-10-18 18:34:59
欄目: 編程語言

在Java中,可以使用Properties類來讀取和寫入配置文件,配置文件通常是以.properties文件格式保存的。

  1. 讀取配置文件:

首先,創建一個Properties對象,并使用其load()方法加載配置文件。load()方法接受一個InputStream對象作為參數,可以使用FileInputStream或者ClassLoader來獲取配置文件的輸入流。例如:

Properties prop = new Properties();
try (InputStream input = new FileInputStream("config.properties")) {
prop.load(input);
} catch (IOException ex) {
ex.printStackTrace();
}

在加載完成后,可以使用getProperty()方法來獲取配置文件中的屬性值。例如:

String url = prop.getProperty("url");
String username = prop.getProperty("username");
String password = prop.getProperty("password");
  1. 寫入配置文件:

首先,創建一個Properties對象,并使用其setProperty()方法來設置屬性值。例如:

Properties prop = new Properties();
prop.setProperty("url", "jdbc:mysql://localhost:3306/mydb");
prop.setProperty("username", "root");
prop.setProperty("password", "password");

然后,創建一個OutputStream對象,并使用Properties的store()方法將屬性值寫入配置文件。store()方法接受一個OutputStream對象和一個注釋作為參數。例如:

try (OutputStream output = new FileOutputStream("config.properties")) {
prop.store(output, "This is a sample config file");
} catch (IOException ex) {
ex.printStackTrace();
}

注意:在寫入配置文件時,如果指定的配置文件不存在,store()方法會自動創建一個新的配置文件。如果配置文件已存在,store()方法會將原有的配置項替換為新的配置項。

0
冕宁县| 虹口区| 区。| 黔江区| 惠安县| 霍山县| 井陉县| 勐海县| 鹤岗市| 荔浦县| 辉南县| 仁寿县| 二连浩特市| 土默特右旗| 甘肃省| 南康市| 通州市| 西平县| 建阳市| 南陵县| 郎溪县| 吉林市| 乌拉特中旗| 厦门市| 汽车| 桐梓县| 鄂伦春自治旗| 赣州市| 扎赉特旗| 鸡泽县| 赞皇县| 米林县| 来凤县| 海盐县| 嘉黎县| 漳平市| 精河县| 周宁县| 安多县| 莫力| 连城县|