中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

java怎么讀取properties配置文件

小億
91
2023-09-20 17:00:37
欄目: 編程語言

在Java中,可以使用java.util.Properties類來讀取.properties配置文件。下面是一個簡單的示例代碼:

import java.io.FileInputStream;
import java.io.IOException;
import java.util.Properties;
public class PropertiesReader {
public static void main(String[] args) {
Properties properties = new Properties();
try {
// 讀取配置文件
FileInputStream fis = new FileInputStream("config.properties");
properties.load(fis);
// 獲取配置項的值
String username = properties.getProperty("username");
String password = properties.getProperty("password");
System.out.println("Username: " + username);
System.out.println("Password: " + password);
fis.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}

在上面的示例中,假設我們有一個名為config.properties的配置文件,內容如下:

username=admin
password=123456

通過FileInputStream類加載文件流,并使用load()方法將配置文件加載到Properties對象中。然后,可以使用getProperty()方法獲取配置項的值。

請注意,需要提供正確的配置文件路徑。如果配置文件位于項目的根目錄下,則可以使用相對路徑,如上述示例中的"config.properties"。如果配置文件位于其他位置,需要指定完整的文件路徑。

0
长兴县| 清水河县| 寿光市| 盐城市| 宁德市| 宽城| 江口县| 佛坪县| 贡觉县| 蛟河市| 麻江县| 齐齐哈尔市| 玉门市| 金湖县| 佛冈县| 巴青县| 平顺县| 扬州市| 金寨县| 福州市| 姜堰市| 余姚市| 海盐县| 浦江县| 庄河市| 锡林郭勒盟| 沁水县| 科技| 南江县| 成都市| 浏阳市| 绥化市| 彰武县| 高州市| 汉中市| 驻马店市| 徐州市| 玉龙| 西平县| 富蕴县| 大冶市|