在eclipse或者其它.class檔案沒有被打包的情況下,使用如下語句可以獲得.class檔案的絕對路徑:
String classFilePath = clazz.class.getResource("").getPath();
當.class檔案被打進jar包之後,上面這條語句就要報錯了。這時你能做的就是去擷取.class檔案所在的jar的絕對路徑:
String jarFilePath = clazz.class.getProtectionDomain().getCodeSource().getLocation().getFile(); jarFilePath = java.net.URLDecoder.decode(jarFilePath, "UTF-8");
JSP:
String sLocalRealPath = application.getRealPath("/").replace('\\', '/');if (sLocalRealPath != null && !sLocalRealPath.endsWith("/")){ sLocalRealPath.concat("/"); //避免 WebLogic 和 WebSphere 不一致}
Java:
String sClassRealPath = new String("");//前面會多返回一個"/", 例如 /D:/test/WEB-INF/, 奇怪, 所以用 substring()sClassRealPath = this.getClass().getResource("/").getPath().substring(1).replaceAll("//", "/");System.out.println(sClassRealPath);
1.如何獲得當前檔案路徑
常用:
(1).Test.class.getResource("")
得到的是當前類FileTest.class檔案的URI目錄。不包括自己!
(2).Test.class.getResource("/")
得到的是當前的classpath的絕對URI路徑。
(3).Thread.currentThread().getContextClassLoader().getResource("")
得到的也是當前ClassPath的絕對URI路徑。
(4).Test.class.getClassLoader().getResource("")
得到的也是當前ClassPath的絕對URI路徑。
(5).ClassLoader.getSystemResource("")
得到的也是當前ClassPath的絕對URI路徑。
盡量不要使用相對於System.getProperty("user.dir")目前使用者目錄的相對路徑,後面可以看出得出結果五花八門。
(6) new File("").getAbsolutePath()也可用。
2.Web伺服器
(1).Tomcat
在類中輸出System.getProperty("user.dir");顯示的是%Tomcat_Home%/bin
(2).Resin
不是你的JSP放的相對路徑,是JSP引擎執行這個JSP編譯成SERVLET
的路徑為根.比如用建立檔案法測試File f = new File("a.htm");
這個a.htm在resin的安裝目錄下
(3).如何讀檔案
使用ServletContext.getResourceAsStream()就可以
(4).獲得檔案真實路徑
String file_real_path=ServletContext.getRealPath("mypath/filename");?
不建議使用request.getRealPath("/");
3.檔案操作的類,不建議使用,可以使用commons io類