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

溫馨提示×

java怎么獲取配置文件參數

小億
145
2023-09-28 17:28:34
欄目: 編程語言

在Java中,可以使用java.util.Properties類來讀取配置文件中的參數。以下是一個簡單的示例:

首先,創建一個名為config.properties的配置文件,并在文件中添加以下內容:

name=John Doe
age=30

然后,在Java代碼中使用Properties類讀取配置文件中的參數:

import java.io.FileInputStream;
import java.io.IOException;
import java.util.Properties;
public class ConfigReader {
public static void main(String[] args) {
Properties properties = new Properties();
FileInputStream configFile = null;
try {
configFile = new FileInputStream("config.properties");
properties.load(configFile);
} catch (IOException e) {
e.printStackTrace();
} finally {
if (configFile != null) {
try {
configFile.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
String name = properties.getProperty("name");
int age = Integer.parseInt(properties.getProperty("age"));
System.out.println("Name: " + name);
System.out.println("Age: " + age);
}
}

運行上述代碼,將輸出以下結果:

Name: John Doe
Age: 30

上述代碼中,首先創建了一個Properties對象properties,然后使用FileInputStream來讀取配置文件config.properties。接著,使用properties.load(configFile)方法加載配置文件中的參數。最后,使用getProperty方法根據參數名獲取相應的值。使用Integer.parseInt將字符串類型的年齡轉換為整數類型。

注意:在使用FileInputStream讀取配置文件時,需要提供配置文件的路徑。上述示例假設配置文件與Java代碼位于同一目錄下,如果不是,請提供正確的路徑。

0
怀来县| 稷山县| 黎平县| 廉江市| 兴文县| 海安县| 呼伦贝尔市| 盐边县| 自贡市| 涞源县| 英吉沙县| 花垣县| 谢通门县| 庄河市| 称多县| 河津市| 龙门县| 仙桃市| 龙里县| 翁源县| 古田县| 枣强县| 互助| 繁峙县| 长子县| 沽源县| 合阳县| 贺州市| 东乌珠穆沁旗| 淮安市| 鹤庆县| 阿鲁科尔沁旗| 达孜县| 明光市| 广元市| 常州市| 赫章县| 繁峙县| 余江县| 湖南省| 定陶县|