我需要在java中指定images / tabIcon.gif的相对路径。
我在班级FileViewerManager
,我需要创建一个新的文件,其中包含images / tabIcon.gif的相对路径。
我的代码是:
File file = new File("./images/tabIcon.gif");
我的项目结构是:
的src /模型/ FileViewerManager
的src /图像/ tabIcon.gif
我的代码无效,因为file.exists
返回false。
答案 0 :(得分:0)
试试这个(我假设你的项目结构中的FileViewerManager是一个文件):
File file = new File("../images/tabIcon.gif");
如果是文件夹,则需要上一个目录:
File file = new File("../../images/tabIcon.gif");