我有这个工作绝对路径
String path = "C:/projects/ISI7/Releases/Release_15.2/EXT_JS/src/main/webapp/WEB-
INF/classes/commonComponents/ApplicationResources_"+ language + ".properties";
我想得到相对路径。我认为相对路径是:
String path = "classes/commonComponents/ApplicationResources_"+ language + ".properties";
但是我得到了fileNotFound异常
我试过的是:String path = "commonComponents/ApplicationResources_"+ language + ".properties";
它也没用。使用JDK 1.6和Windows OS。
答案 0 :(得分:0)
要确定你的工作目的,试试这个:
File f = new File(".");
System.out.println(f.getAbsolutePath());