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

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

編輯:關於JSP

<%@ page contentType="text/html;charset=GBK"%><%@ page import="java.io.*" %><%//在Servlet與jsp(SUN企業級應用的首選)中取得當前文件所在的相對路徑與絕對路徑//jsp(SUN企業級應用的首選)中out.println("根目錄所對應的絕對路徑:" + request.getRequestURI() + "
");String strPathFile = application.getRealPath(request.getRequestURI());out.println("文件的絕對路徑:" + strPathFile+ "
");out.println(application.getRealPath(request.getRequestURI()));String strDirPath = new File(application.getRealPath(request.getRequestURI())).getParent();out.println("目錄的絕對路徑:" + strDirPath + "
");%>//Servlet中//jsp(SUN企業級應用的首選)中的application對象就是Servlet中的ServerContext,所以在Servlet中是如此獲得//import java.io.File;System.out.println("根目錄所對應的絕對路徑:" + request.getServletPath() + "
");String strPathFile = request.getSession().getServletContext().getRealPath(request.getRequestURI());System.out.println("文件的絕對路徑:" + strPathFile + "
");String strDirPath = new File(request.getSession().getServletContext().getRealPath(request.getRequestURI())).getParent();System.out.println("目錄的絕對路徑:" + strDirPath + "
");文件名不能包括以下字符:/:*?"<>|

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