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

溫馨提示×

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
新巴尔虎左旗| 得荣县| 富蕴县| 汉中市| 准格尔旗| 濮阳市| 云龙县| 射洪县| 达州市| 宁夏| 安宁市| 枞阳县| 喀喇沁旗| 若尔盖县| 本溪| 通河县| 土默特右旗| 西乌| 汾阳市| 弥勒县| 汽车| 海淀区| 临海市| 兴宁市| 措勤县| 廊坊市| 伊春市| 惠安县| 贵港市| 钦州市| 从化市| 醴陵市| 南城县| 阿巴嘎旗| 屯门区| 青川县| 大新县| 蓬莱市| 莱阳市| 崇礼县| 桃园市|