关于路径的问题简单总结

上代码吧

/**
     *   关于路径问题 的 总结
     * @param response
     * @throws IOException
     */
    
    private void test4(HttpServletResponse response) throws IOException {
         //1.只要是写地址  都统统用 / 开头
         //2.要是"/"是给服务器用的则代表 这个 web资源   
            this.getServletContext().getRealPath("/...");//这个 "/" 是相对于服务器来说的 
            this.getServletContext().getRequestDispatcher("/...");//转发 也是相对服务器说的
        
          //要是 "/"是给浏览器用的则代表webapps
            response.sendRedirect("/...");//重定向  相对于浏览器来说的
            //3.当程序处理url资源的时候 用"/",程序读取硬盘资源 用"\\"
            FileOutputStream fileOutputStream=new FileOutputStream("F:\\java");//读取硬盘上的数据
    }
    

你可能感兴趣的:(关于路径的问题简单总结)