在Java中獲取properties的值,可以通過使用java.util.Properties
類來讀取和操作properties文件。以下是獲取properties值的示例代碼:
java.util.Properties
類加載properties文件:import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.util.Properties;
public class TestProperties {
public static void main(String[] args) {
Properties prop = new Properties();
try (InputStream input = new FileInputStream("path/to/your/file.properties")) {
// 加載properties文件
prop.load(input);
} catch (IOException ex) {
ex.printStackTrace();
}
// 獲取properties的值
String value = prop.getProperty("key");
System.out.println("Value: " + value);
}
}
需要將"path/to/your/file.properties"替換為你的properties文件的路徑。
java.util.ResourceBundle
類加載properties文件:import java.util.ResourceBundle;
public class TestProperties {
public static void main(String[] args) {
ResourceBundle bundle = ResourceBundle.getBundle("your.file");
// 獲取properties的值
String value = bundle.getString("key");
System.out.println("Value: " + value);
}
}
需要將"your.file"替換為你的properties文件的名稱(不包括擴展名)。
無論使用哪種方法,都需要確保properties文件存在并且包含指定的鍵。