weblogic獲取檔案的路徑問題

2021-08-26 22:37:42 字數 419 閱讀 5742

獲取檔案的路徑問題:

// string bytter_keypath=config.getservletcontext().getrealpath("/")+"web-inf/classes/license.lic"; 

上面這種方式在aix下面是存在問題的,找不到路徑的。

在aix下面,上面的方法獲取得到的路徑是:/v10cpweb-info/classes....

實際路徑應該是/v10cp/web-info/classes....

少了乙個斜槓,導致程式找不到指定的檔案.

通過下面的方式即可找到:

string bytter_keypath=thread.currentthread().getcontextclassloader().getresource("license.lic").getfile();

weblogic路徑獲取

在tomcat下執行正常,但是使用了weblogic之後出現各種的src下的檔案找不到。先看以下的各種獲取檔案路徑的方法 1.string path getclass getresource getfile tostring 結果 d oracle middleware user projects ...

weblogic獲取路徑總是為NULL

weblogic獲取路徑總是為null 通常情況下,獲取tomcat中的相對路徑,我們以前使用 但是這是個過時的方法 request.getsession getservletcontext getrealpath 得到站點的絕對位址 在strut中通過 this.getservlet getser...

檔案獲取路徑

獲取模組的完整路徑,包含檔名 system.diagnostics.process.getcurrentprocess mainmodule.filename 獲取和設定當前目錄 該程序從中啟動的目錄 的完全限定目錄。system.environment.currentdirectory 獲取應用程...