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

溫馨提示×

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
阿拉善右旗| 海南省| 抚远县| 连州市| 鹤山市| 武冈市| 灯塔市| 沁水县| 龙陵县| 七台河市| 清河县| 洱源县| 嘉兴市| 仁化县| 虎林市| 枣阳市| 景洪市| 积石山| 紫金县| 洪雅县| 屏东县| 探索| 东城区| 察哈| 区。| 彝良县| 新安县| 霍邱县| 泽州县| 陕西省| 唐河县| 白山市| 施秉县| 石首市| 特克斯县| 潼南县| 茶陵县| 普陀区| 师宗县| 葫芦岛市| 陆河县|