JSP、Java 擷取當前絕對路徑

來源:互聯網
上載者:User

在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類

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.