Java中读取配置文件的方法是使用Properties类。以下是读取配置文件的步骤:
Properties props = new Properties();
try {
props.load(new FileInputStream("config.properties"));
} catch (IOException e) {
e.printStackTrace();
}
String value = props.getProperty("key");
完整的示例代码如下:
import java.io.FileInputStream;
import java.io.IOException;
import java.util.Properties;
public class ConfigReader {
public static void main(String[] args) {
Properties props = new Properties();
try {
props.load(new FileInputStream("config.properties"));
} catch (IOException e) {
e.printStackTrace();
}
String value = props.getProperty("key");
System.out.println("Value: " + value);
}
}
上述代码假设配置文件名为"config.properties",其中包含一个名为"key"的属性。通过调用getProperty(“key”)方法,可以获取该属性的值。
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: java的驼峰命名规则有哪些