在tomcat中部署的eclipse中的java web 项目中,这里是代码片段
File file = new File(".");
System.out.println(file.getAbsolutePath());
并打印出来
D:\Program_Files\eclipse\.
这是eclipse的root安装目录,我知道"。"引用路径表示运行java命令的路径,但路径为D:\Program_Files\eclipse\.
的原因是什么?
我发现其他人测试了此代码段,并将路径打印为%tomcat_home%/bin
,如何设置为获得%tomcat_home%/bin
的相同代码结果?