在Java中讀取Properties配置文件通常使用Properties
類來實現(xiàn)。以下是一個簡單的示例代碼來讀取一個名為config.properties
的配置文件:
import java.io.FileInputStream;
import java.io.IOException;
import java.util.Properties;
public class ReadPropertiesFile {
public static void main(String[] args) {
Properties prop = new Properties();
try (FileInputStream input = new FileInputStream("config.properties")) {
prop.load(input);
// 讀取配置文件中的屬性值
String value1 = prop.getProperty("key1");
String value2 = prop.getProperty("key2");
System.out.println("Value 1: " + value1);
System.out.println("Value 2: " + value2);
} catch (IOException e) {
e.printStackTrace();
}
}
}
在上面的代碼中,我們創(chuàng)建了一個Properties
對象并使用load
方法從config.properties
文件中加載配置。然后我們可以使用getProperty
方法來讀取配置文件中的屬性值。
注意:確保config.properties
文件在項目的根目錄下或者指定正確的路徑。