1. 程式人生 > >weblogic上獲取資源路徑

weblogic上獲取資源路徑

路徑 context gpo 方法 etc tcl thread ren class

weblogic和tomcat下通用的獲取路徑或者加載資源的方法

1、獲取路徑

this.getClass().getClassLoader().getResource("/").getPath(); //格式如...../WEB-INFO/class/

2、加載配置文件

若配置文件是在源文件根目錄

InputString is = Thread.currentThread().getContextClassLoader().getResourceAsStream("xxxx.properties");

InputStream in = getClass().getResourceAsStream("/config.properties");//只能靜態類用

weblogic上獲取資源路徑