Java以及web相关的路径全面解析

Java以及web相关的路径全面解析

一、基本概念

绝对路径:

绝对路径就是文件或目录在硬盘上真正的路径,例如:C:\xyz\test.txt 代表了test.txt文件的绝对路径。还有http://localhost/learnjsp/login.jsp 也是绝对路径。

相对路径:

相对与某个基准目录而言的路径。

其一,在jsp和servlet中,/ 代表web应用的根目录(以web应用为基准),如/login.jsp 代表localhost:8080/myBlog/login.jsp

其二,在html中,/ 代表服务器的根目录(以web服务器为基准),/login.jsp 代表localhost:8080/login.jsp

其三,参照物理路径的相对表示。例如:./ 代表当前目录,../ 代表上级目录。这种类似的表示,也是属于相对路径。

二、jsp中的路径

在jsp中,因为其包裹了html,大多数情况下我们是要写html里面的路径。使用相对路径,因为没有意义也无法取得绝对路径

1、表单的action 提交给servlet

使用表单时,要提交给servlet 进行处理,使用相对路径:

// 提交给handleServlet (servlet)
action="<%=request.getContextPath()%>/handleServlet"

action="${pageContext.request.contextPath}/handleServlet"

actiom="/webapp/handleservlet"  // 不推荐

这里的<%=request.getContextPath()%> 的值为:/webapp

如果是提交给某个jsp或html文件,同理。

2、css、js等文件的引入路径

一般情况下,在JSP/HTML页面等引用的CSS,Javascript.Action等属性前面最好都加上 <%=request.getContextPath()%> ,以确保所引用的文件都属于Web应用中的目录。

3、注意

无论是表单的form 还是css、js的引入路径,都应该尽量避免使用类似../ ../../ 等类似的相对该文件位置的相对路径,否则当文件移动时,很容易出问题。

三、servlet中的路径

在servlet中,我们经常要将请求转发或者重定向到另一个地方。我们只能使用相对路径

1、请求转发或重定向

使用request.getRequestDispatcher(address) 进行请求转发,或者是sendRedirect:response.sendRedirect(address) 进行重定向。

request.getRequestDispatcher("/toArticle/article.jsp").forward(request, response);  
// 等价于访问 localhost:8080/webapp/toArticle/article.jsp

注意: 在这里,请求转发是相对于服务器而言,因此其/ 代表了/webapp ;而重定向是相对于客户端而言,因此其/ 代表了localhost

如果是请求转发给servlet,同理。

四、java中的路径

五、获取web应用/jsp/其他文件的物理路径

1、获取发出请求的页面的完整url

// 发出请求的页面完整url
request.getRequestURL() 
// http://localhost:8080/webapp/toArticle/request.jsp 

// 其他操作
request.getContextPath()
// /webapp 
request.getRequestURI() 
// /webapp/toArticle/request.jsp
request.getServletPath()
// /toArticle/request.jsp 

2、获取web应用/jsp/其他文件的完整物理路径

使用getRealPath() 来获取完整的物理路径,主要是在servlet 中经常需要使用

下面的3个例子,是在jsp页面中使用举例。

// web应用的完整路径
<%=application.getRealPath("/")%>
// C:\tomcat\apache-tomcat-8.5.24\webapps\myBlog\

// 发出请求的jsp页面的完整路径
<%=application.getRealPath(request.getRequestURI())%>
// C:\tomcat\apache-tomcat-8.5.24\webapps\myBlog\myBlog\toArticle\article.jsp

// 获取其他文件的完整路径
<%=application.getRealPath("/toPost/post.jsp")%>

这里,/ 代表了web应用的根目录

可以使用getRealPath(String path) 方法的有:

当path为/ 时,代表的是web应用;当path为/toPost/post.jsp 时,代表的web应用下的某一个文件;当path为request.getRequestURI() 时,代表发出请求的jsp文件。

1、jsp页面使用,一般使用不到(没有意义)

<%
    pageContext.getServletContext().getRealPath("/");
    request.getSession().getServletContext().getRealPath("/");
    session.getServletContext().getRealPath("/");
    application.getRealPath("/");

    pageContext.getRequest()...;  // 得到request对象
    pageContext.getSession()...;  // 得到session对象

    pageContext.getServletConfig().getServletContext().getRealPath("/");                        this.getServletConfig().getServletContext().getRealPath("/");                            
%>

2、servlet中使用

this.getServletConfig().getServletContext().getRealPath("/");
request.getSession().getServletContext().getRealPath("/");
this.getServletContext().getRealPath("/");

你可能感兴趣的:(路径)