假定你的web application 名稱爲news,你在瀏覽器中輸入請求路徑:
http://localhost:8080/news/main/list.jsp
則執行下面向行代碼後打印出以下結果:
一、 System.out.println(request.getContextPath()); //可返回站點的根路徑。也就是項目的名字
打印結果:/news
二、System.out.println(request.getServletPath());
打印結果:/main/list.jsp
三、 System.out.println(request.getRequestURI());
打印結果:/news/main/list.jsp
四、 System.out.println(request.getRealPath("/"));
打印結果:F:\Tomcat 6.0\webapps\news\testweb