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

溫馨提示×

java怎么讀取config目錄下配置文件

小億
163
2023-09-20 16:40:40
欄目: 編程語言

要讀取config目錄下的配置文件,可以使用Java中的Properties類來實現。

首先,需要通過類加載器獲取到配置文件的輸入流。假設配置文件的名字是config.properties,可以使用以下代碼獲取到輸入流:

InputStream inputStream = Thread.currentThread().getContextClassLoader().getResourceAsStream("config/config.properties");

接下來,可以使用Properties類加載輸入流,并讀取配置文件中的內容:

Properties properties = new Properties();
properties.load(inputStream);

現在,配置文件中的內容已經加載到Properties對象中了。可以通過getProperty()方法來獲取配置項的值:

String configValue = properties.getProperty("config.key");

其中,config.key是配置項的鍵值。

完整的代碼示例:

import java.io.InputStream;
import java.util.Properties;
public class ConfigReader {
public static void main(String[] args) {
try {
// 獲取配置文件的輸入流
InputStream inputStream = Thread.currentThread().getContextClassLoader().getResourceAsStream("config/config.properties");
// 加載配置文件
Properties properties = new Properties();
properties.load(inputStream);
// 讀取配置項的值
String configValue = properties.getProperty("config.key");
System.out.println("配置項的值是:" + configValue);
// 關閉輸入流
inputStream.close();
} catch (Exception e) {
e.printStackTrace();
}
}
}

請確保配置文件config.properties位于config目錄下,并且在類路徑中可訪問到。

0
花莲县| 腾冲县| 赫章县| 鹤山市| 古蔺县| 葫芦岛市| 诸城市| 蓝田县| 宁德市| 海盐县| 漳州市| 石家庄市| 奉贤区| 铜鼓县| 丰城市| 平罗县| 如东县| 遂平县| 彭山县| 衡阳市| 广宗县| 长岭县| 嘉善县| 安阳市| 卢湾区| 伊金霍洛旗| 娱乐| 望谟县| 凭祥市| 祥云县| 金阳县| 万州区| 讷河市| 靖远县| 紫阳县| 诏安县| 门头沟区| 博白县| 元氏县| 仁化县| 板桥市|