Javaproperties 如何使用同文件的指定字段
在Java中,可以使用Properties类来读取和写入.properties文件。
假设你有一个名为config.properties的文件,它的内容如下:
name=John
age=25
city=New York
你想要在Java代码中使用这些字段的值,可以按照以下步骤操作:
- 创建一个
Properties对象并加载文件:
Properties properties = new Properties();
try (InputStream inputStream = new FileInputStream("config.properties")) {
properties.load(inputStream);
} catch (IOException e) {
e.printStackTrace();
}
- 使用
getProperty方法获取指定字段的值:
String name = properties.getProperty("name");
String age = properties.getProperty("age");
String city = properties.getProperty("city");
System.out.println("Name: " + name);
System.out.println("Age: " + age);
System.out.println("City: " + city);
输出结果将会是:
Name: John
Age: 25
City: New York
这样你就可以在Java代码中使用.properties文件中的指定字段了
原文地址: https://www.cveoy.top/t/topic/iq8J 著作权归作者所有。请勿转载和采集!