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

溫馨提示×

java中怎么用properties類讀取配置文件

小億
84
2023-12-26 19:10:14
欄目: 編程語言

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

  1. 創建一個配置文件config.properties,內容如下:
name=John
age=25
  1. 在Java代碼中使用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();
        FileInputStream input = null;

        try {
            input = new FileInputStream("config.properties");
            properties.load(input);

            // 讀取配置文件中的屬性值
            String name = properties.getProperty("name");
            String age = properties.getProperty("age");

            System.out.println("name: " + name);
            System.out.println("age: " + age);

        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            if (input != null) {
                try {
                    input.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }
    }
}

在上述代碼中,首先創建了一個Properties對象,然后使用FileInputStream來加載配置文件。接下來,使用load()方法將配置文件加載到Properties對象中。最后,使用getProperty()方法獲取配置文件中的屬性值。

0
贵州省| 扎兰屯市| 贡山| 宁德市| 醴陵市| 泰来县| 同仁县| 西畴县| 湘潭县| 阿克陶县| 万山特区| 桐城市| 津南区| 明光市| 灵山县| 冀州市| 芦溪县| 绥宁县| 定安县| 天气| 长乐市| 北碚区| 施甸县| 新龙县| 张家川| 安义县| 阜宁县| 耒阳市| 安新县| 安康市| 乐山市| 阿鲁科尔沁旗| 云和县| 南和县| 贡觉县| 东莞市| 蒙阴县| 南投县| 安义县| 达孜县| 麻栗坡县|