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

溫馨提示×

java如何獲取properties的值

小億
117
2023-08-04 20:09:47
欄目: 編程語言

要獲取properties文件中的值,可以使用Java的Properties類。以下是一個示例代碼,說明如何獲取properties文件中的值:

import java.io.FileInputStream;
import java.io.IOException;
import java.util.Properties;
public class Main {
public static void main(String[] args) {
Properties properties = new Properties();
try {
FileInputStream fileInputStream = new FileInputStream("config.properties");
properties.load(fileInputStream);
fileInputStream.close();
} catch (IOException e) {
e.printStackTrace();
}
// 獲取properties文件中的值
String value1 = properties.getProperty("key1");
String value2 = properties.getProperty("key2");
System.out.println("Value 1: " + value1);
System.out.println("Value 2: " + value2);
}
}

在上面的代碼中,我們首先創建了一個Properties對象。然后使用FileInputStream加載properties文件,并通過load方法將文件的內容加載到Properties對象中。然后通過getProperty方法獲取指定鍵的值。

假設config.properties文件的內容如下:

key1=value1
key2=value2

運行上面的示例代碼將輸出:

Value 1: value1
Value 2: value2

0
巴林左旗| 海晏县| 霍林郭勒市| 德格县| 乐亭县| 邹城市| 龙岩市| 宁陕县| 隆德县| 饶阳县| 筠连县| 醴陵市| 乌鲁木齐县| 同仁县| 武城县| 苏尼特左旗| 岑巩县| 清河县| 台北市| 台安县| 龙井市| 拜城县| 沧州市| 岢岚县| 德保县| 平谷区| 潞城市| 浦东新区| 钟山县| 永昌县| 宁都县| 临安市| 铁力市| 石家庄市| 时尚| 隆林| 富民县| 常山县| 丹凤县| 彩票| 江达县|