首页 > 代码库 > servlet——web应用中路径问题
servlet——web应用中路径问题
target.html
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>target.html</title> <meta http-equiv="keywords" content="keyword1,keyword2,keyword3"> <meta http-equiv="description" content="this is my page"> <meta http-equiv="content-type" content="text/html; charset=UTF-8"> <!--<link rel="stylesheet" type="text/css" href="http://www.mamicode.com/styles.css">--> </head> <body> 目标资源html页面 </body> </html>
servlet:
package path; import java.io.IOException; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; /** * web应用中路径问题 * @author Administrator * */ public class PathDemo extends HttpServlet { public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { response.setContentType("text/html; charset=utf-8"); //目标资源: target.html /* * 思考: 目标资源是给谁使用的。 * 给服务器使用的: / 表示在当前web应用的根目录(webRoot下) * 给浏览器使用的: / 表示在webapps的根目录下 */ /* * 1.转发 * 给服务器使用的 */ // request.getRequestDispatcher("/target.html").forward(request, response); /* * 2.请求重定向 * 给浏览器使用的 */ // response.sendRedirect("/day11/target.html"); /* * 3.html页面的超连接href * 给浏览器使用的 */ // response.getWriter().write("<html><body><a href=http://www.mamicode.com/‘/day11/target.html‘>超链接