web工程中url地址主要用在四个方面,分别是servletContext, forward,sendRedirect,html中的<a href=""></a>标签
public void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {//只要是写地址,统一以/开头
// “/”是给服务器用的,就代表web工程,如果给浏览器用的,就代表webapps
//程序处理的是url资源,用“/”.程序读取硬盘资源,用“\\”
//servletContext
this.getServletContext().getRealPath("/login.html");
//forward
this.getServletContext().getRequestDispatcher("/login.html");
//sendRedirect
response.sendRedirect("/Exe/login.html");
// html <a href=""></a> 代表的是webapps,则用"/Exe/login.html"
}