在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文件存在并且包含指定的键。