java代码读取配置文件路径
时间: 2024-06-05 11:03:03 浏览: 120
java 读取配置文件
在Java中,可以使用`java.util.Properties`类来读取配置文件。以下是一个示例代码,演示如何读取配置文件路径:
```java
import java.io.FileInputStream;
import java.io.IOException;
import java.util.Properties;
public class ConfigReader {
public static void main(String[] args) {
Properties prop = new Properties();
FileInputStream input = null;
try {
// 加载配置文件
input = new FileInputStream("config.properties");
prop.load(input);
// 读取配置项
String filePath = prop.getProperty("file.path");
System.out.println("配置文件路径:" + filePath);
} catch (IOException ex) {
ex.printStackTrace();
} finally {
if (input != null) {
try {
input.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
}
```
上述代码假设配置文件名为`config.properties`,并且在与Java代码相同的目录下。你可以根据实际情况修改配置文件名和路径。
阅读全文