Java獲得web的根路徑方法
引導語:用戶在磁盤上尋找文件時,所歷經(jīng)的文件夾線路叫路徑。那么你知道運用Java如何獲取Web的根路徑嗎,以下是百分網(wǎng)小編分享給大家的Java獲得web的根路徑方法,歡迎閱讀!
java獲取根路徑有兩種方式:
1),在servlet可以用一下方法取得:
request.getRealPath(“/”) 例如:filepach = request.getRealPath(“/”)+”//upload//”;
2),不從jsp,或servlet中獲取,只從普通java類中獲。
String path =
getClass().getProtectionDomain().getCodeSource().getLocation().getPath();
SAXReader() saxReader = new SAXReader();
if(path.indexOf(“WEB-INF”)>0){
path = path.substring(0,path.indexOf(“/WEB-INF/classes”)+16);
// ‘/WEB-INF/classes’為16位
document = saxReader.read(path+filename);
}else{
document = saxReader.read(getClass().getResourceAsStream(filename));
}
weblogic tomcat 下都有效
String path =
getClass().getProtectionDomain().getCodeSource().getLocation().getPath();
【Java獲得web的根路徑方法】相關(guān)文章: