idea - Java main()方法中File的默认相对路径和Junit Test 方法中File的路径问题
阿神
阿神 2017-04-18 09:58:10
0
1
925

如图在Junit Test方法中创建的文件和src目录同级,而在main()方法中创建的文件目录却和Module目录同级,想问一下这是为什么。
创建文件的代码

File file = new File("www.runoob.com.html");
if(!file.exists())
{
   file.createNewFile();
}
阿神
阿神

闭关修行中......

reply all(1)
伊谢尔伦

File是相对于System.getProperty("user.dir")目录给寻找文件的。
你这2个user.dir路径不一样,所以需要放置在不同的目录。你可以确定一下运行参数中对user.dir的设定。
你如果想要一样把user.dirSet it to the same and it will be ok.

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template