中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

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
宽城| 顺义区| 岳阳县| 阿坝| 郎溪县| 天柱县| 德阳市| 合江县| 呼图壁县| 宾阳县| 武汉市| 和田市| 阿克苏市| 淮滨县| 大埔区| 柳州市| 晋城| 杨浦区| 象州县| 库伦旗| 顺昌县| 山阴县| 福州市| 抚远县| 肥东县| 云安县| 延安市| 海晏县| 酒泉市| 自治县| 三穗县| 潜江市| 陈巴尔虎旗| 海原县| 老河口市| 十堰市| 井陉县| 门源| 沙坪坝区| 长沙县| 扶风县|