要獲取properties文件中的值,可以使用Java的Properties類。以下是一個示例代碼,說明如何獲取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();
try {
FileInputStream fileInputStream = new FileInputStream("config.properties");
properties.load(fileInputStream);
fileInputStream.close();
} catch (IOException e) {
e.printStackTrace();
}
// 獲取properties文件中的值
String value1 = properties.getProperty("key1");
String value2 = properties.getProperty("key2");
System.out.println("Value 1: " + value1);
System.out.println("Value 2: " + value2);
}
}
在上面的代碼中,我們首先創建了一個Properties對象。然后使用FileInputStream加載properties文件,并通過load方法將文件的內容加載到Properties對象中。然后通過getProperty方法獲取指定鍵的值。
假設config.properties文件的內容如下:
key1=value1
key2=value2
運行上面的示例代碼將輸出:
Value 1: value1
Value 2: value2