Javaでプロパティファイルの内容を取得する方法は何ですか?

Javaでは、java.util.Propertiesクラスを使用して、propertiesファイルの内容を取得することができます。

プロパティファイルの内容を取得するサンプルコードは次のとおりです:

import java.io.FileInputStream;
import java.io.IOException;
import java.util.Properties;

public class ReadPropertiesFile {
    public static void main(String[] args) {
        Properties properties = new Properties();
        FileInputStream fileInputStream = null;

        try {
            // 加载properties文件
            fileInputStream = new FileInputStream("path/to/file.properties");
            properties.load(fileInputStream);

            // 获取properties文件中的值
            String value1 = properties.getProperty("key1");
            String value2 = properties.getProperty("key2");

            System.out.println("Value 1: " + value1);
            System.out.println("Value 2: " + value2);

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

上記のコードでは、まずPropertiesオブジェクトを作成し、その後FileInputStreamを使用してpropertiesファイルをロードします。その後、getProperty()メソッドを使用してキーに基づいて値を取得できます。

実際のプロパティファイルのパスにパス/to/file.propertiesを置き換えてください。

IOException例外を処理し、最後にFileInputStreamを閉じる必要があります。これにより、リソースが正しく解放されます。

bannerAds