程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> JSP編程 >> 關於JSP >> jsp 取得相對與絕對路徑代碼

jsp 取得相對與絕對路徑代碼

編輯:關於JSP

//在Servlet與JSP中取得當前文件所在的相對路徑與絕對路徑
 
  //JSP中

  out.println("根目錄所對應的絕對路徑:" request.getRequestURI() "<br/>");
 
  String strPathFile = application.getRealPath(request.getRequestURI());
  out.println("文件的絕對路徑:" strPathFile "<br/>");
out.println(application.getRealPath(request.getRequestURI()));
  String strDirPath = new File(application.getRealPath(request.getRequestURI())).getParent();
  out.println("目錄的絕對路徑:" strDirPath "<br/>");

  //Servlet中
  //JSP中的application對象就是Servlet中的ServerContext,所以在Servlet中是如此獲得
  //import java.io.File;

System.out.println("根目錄所對應的絕對路徑:" request.getServletPath() "<br/>");

String strPathFile = request.getSession().getServletContext().getRealPath(request.getRequestURI());
System.out.println("文件的絕對路徑:" strPathFile "<br/>");

String strDirPath = new File(request.getSession().getServletContext().getRealPath(request.getRequestURI())).getParent();
System.out.println("目錄的絕對路徑:" strDirPath "<br/>");

  文件名不能包括以下字符:/:*?"<>|

獲取Web項目的全路徑
String strDirPath = getServletContext().getRealPath("/");

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved