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”)方法,可以获取该属性的值。