在Java中,可以使用java.util.Properties
類來讀取properties文件的值。
以下是一個簡單的示例:
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.util.Properties;
public class ReadPropertiesExample {
public static void main(String[] args) {
Properties properties = new Properties();
InputStream inputStream = null;
try {
// 讀取properties文件
inputStream = new FileInputStream("config.properties");
properties.load(inputStream);
// 讀取屬性值
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 (inputStream != null) {
try {
inputStream.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
}
在這個示例中,我們首先創建一個Properties
對象,然后使用FileInputStream
來讀取properties文件。接下來,使用load()
方法加載文件內容到Properties
對象中。最后,可以使用getProperty()
方法來獲取具體的屬性值。
需要注意的是,要根據實際的properties文件路徑來指定FileInputStream
的參數。