亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

java如何讀取jar包下的配置文件

小億
200
2023-09-17 00:58:36
欄目: 編程語言

可以使用Java中的ClassLoader來讀取jar包下的配置文件。

使用ClassLoader的getResourceAsStream方法來讀取jar包下的配置文件,代碼示例如下:

import java.io.IOException;
import java.io.InputStream;
import java.util.Properties;
public class ReadConfigFromJar {
public static void main(String[] args) {
// 使用ClassLoader加載配置文件
InputStream inputStream = ReadConfigFromJar.class.getClassLoader().getResourceAsStream("config.properties");
Properties properties = new Properties();
try {
// 加載配置文件
properties.load(inputStream);
// 獲取配置項的值
String value = properties.getProperty("key");
System.out.println(value);
} catch (IOException e) {
e.printStackTrace();
} finally {
if (inputStream != null) {
try {
inputStream.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
}

在上述示例代碼中,通過ClassLoader.getResourceAsStream("config.properties")方法來獲取配置文件的輸入流,然后使用Properties類加載輸入流并獲取配置項的值。需要注意的是,配置文件必須位于classpath下。

另外,需要將配置文件的路徑以正確的相對路徑方式傳遞給getResourceAsStream方法。如果配置文件位于jar包的根目錄下,則直接使用文件名即可,如果配置文件位于jar包的子目錄下,則需要將目錄路徑和文件名一起傳遞,例如"config/sub_config.properties"

0
吉首市| 米脂县| 迁西县| 公安县| 鸡泽县| 景泰县| 新营市| 甘孜| 乐山市| 师宗县| 荣成市| 石狮市| 玛纳斯县| 安新县| 商河县| 疏附县| 郑州市| 安西县| 瓦房店市| 离岛区| 襄樊市| 南江县| 岳普湖县| 嘉兴市| 广河县| 博野县| 莫力| 平昌县| 张家界市| 应城市| 新安县| 泗洪县| 安泽县| 辉县市| 从化市| 南宫市| 镇安县| 分宜县| 北安市| 墨脱县| 绍兴市|