码迷,mamicode.com
首页 > Web开发 > 详细

web工程中各类地址的写法

时间:2015-10-18 19:54:58      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:

web工程中各类地址,最好以/开头开始前先想好:地址是给谁用的

  1. 服务器:/ == web应用
  2. 浏览器: / == 网站
    protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {  
        //1,地址是给服务器用的  
        request.getRequestDispatcher("/foot.jsp").forward(request,response);  
        //2,地址是给浏览器用的  
        response.sendRedirect("/day06/foot.jsp");  
        //3,服务器  
        this.getServletContext().getRealPath("/foot.jsp");  
        //4,服务器  
        this.getServletContext().getResourceAsStream("/public/head.jsp");  
        //5,给浏览器  
        /* 
            <a href="/day06/foot.jsp">xxxxx</a> 
            <form action="/day06/head.jsp"></form> 
         
        */  
    }  

 

web工程中各类地址的写法

标签:

原文地址:http://www.cnblogs.com/lyjs/p/4890063.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!