如何在java中定义相对路径
2022-08-31 17:31:45
这是我的项目结构:
我需要阅读里面。我试图用一个相对路径这样做,如下所示:config.properties
MyClass.java
// Code called from MyClass.java
File f1 = new File("..\\..\\..\\config.properties");
String path = f1.getPath();
prop.load(new FileInputStream(path));
这给了我以下错误:
..\..\..\config.properties (The system cannot find the file specified)
如何在Java中定义相对路径?我正在使用jdk 1.6并在Windows上工作。