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

溫馨提示×

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
兴隆县| 界首市| 肇庆市| 剑阁县| 双流县| 邛崃市| 龙游县| 庆城县| 沙洋县| 开江县| 包头市| 上饶市| 云南省| 和田市| 鄯善县| 晋中市| 东丰县| 福建省| 黎川县| 开化县| 宝应县| 孟州市| 奉新县| 南汇区| 大化| 台中市| 夏河县| 同德县| 嘉鱼县| 崇明县| 顺平县| 靖西县| 开封县| 延川县| 金门县| 丹棱县| 多伦县| 嘉禾县| 错那县| 平罗县| 沁源县|