.jsp擷取路徑

來源:互聯網
上載者:User

<%@ page contentType="text/html; charset=gb2312" language="java" import="java.io.*" errorPage="" %>

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=gb2312">

<title>Untitled Document</title>

</head><body>

當前WEB應用的實體路徑:<%=application.getRealPath("/")%><BR>

當前你求請的JSP檔案的實體路徑:<%=application.getRealPath(request.getRequestURI())%><BR>

<%

   String path=application.getRealPath(request.getRequestURI());

   String dir=new File(path).getParent();

   out.println("當前JSP檔案所在目錄的實體路徑"+dir);

%>

</body>

</html>

、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、、

String virtPath = request.getServletPath();//虛擬路徑

String realPath = request.getRealPath(virtPath);//實體路徑

JSP中獲得當前應用的相對路徑和絕對路徑

根目錄所對應的絕對路徑:request.getRequestURI()

檔案的絕對路徑    :application.getRealPath(request.getRequestURI());

當前web應用的絕對路徑 :application.getRealPath("/");

取得請求檔案的上層目錄:new File(application.getRealPath(request.getRequestURI())).getParent()

Servlet中獲得當前應用的相對路徑和絕對路徑

根目錄所對應的絕對路徑:request.getServletPath();

檔案的絕對路徑   :request.getSession().getServletContext().getRealPath

(request.getRequestURI())  

當前web應用的絕對路徑 :servletConfig.getServletContext().getRealPath("/");

    (ServletContext對象獲得幾種方式:

      Javax.servlet.http.HttpSession.getServletContext()

      Javax.servlet.jsp.PageContext.getServletContext()

      Javax.servlet.ServletConfig.getServletContext()

    )

Java 的Class中獲得相對路徑,絕對路徑的方法

單獨的Java類中獲得絕對路徑

根據Java.io.File的Doc文擋,可知:

預設情況下new File("/")代表的目錄為:System.getProperty("user.dir")。

一下程式獲得執行類的當前路徑

package org.cheng.file;

import Java.io.File;

public class FileTest {

   public static void main(String[] args) throws Exception {     

System.out.println(Thread.currentThread().getContextClassLoader().getResource(""));    

System.out.println(FileTest.class.getClassLoader().getResource(""));       

  System.out.println(ClassLoader.getSystemResource(""));       

System.out.println(FileTest.class.getResource(""));       

System.out.println(FileTest.class.getResource("/")); //Class檔案所在路徑

System.out.println(new File("/").getAbsolutePath());       

System.out.println(System.getProperty("user.dir"));   

}

}

伺服器中的Java類獲得當前路徑(來自網路)

(1).Weblogic

WebApplication的系統檔案根目錄是你的weblogic安裝所在根目錄。

例如:如果你的weblogic安裝在c:\bea\weblogic700.....

那麼,你的檔案根路徑就是c:\.

所以,有兩種方式能夠讓你訪問你的伺服器端的檔案:

a.使用絕對路徑:

比如將你的參數檔案放在c:\yourconfig\yourconf.properties,

直接使用 new FileInputStream("yourconfig/yourconf.properties");

b.使用相對路徑:

相對路徑的根目錄就是你的webapplication的根路徑,即WEB-INF的上一級目錄,將你的參數檔案放

在yourwebapp\yourconfig\yourconf.properties,

這樣使用:

new FileInputStream("./yourconfig/yourconf.properties");

這兩種方式均可,自己選擇。

(2).Tomcat

在類中輸出System.getProperty("user.dir");顯示的是%Tomcat_Home%/bin

(3).Resin

不是你的JSP放的相對路徑,是JSP引擎執行這個JSP編譯成SERVLET

的路徑為根.比如用建立檔案法測試File f = new File("a.htm");

這個a.htm在resin的安裝目錄下

(4).如何讀相對路徑哪?

在Java檔案中getResource或getResourceAsStream均可

例:getClass().getResourceAsStream(filePath);//filePath可以是"/filename",這裡的/代表web

發布根路徑下WEB-INF/classes

預設使用該方法的路徑是:WEB-INF/classes。已經在Tomcat中測試。

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.