在jsp和class文件中调用的相对路径不同。
在jsp里,根目录是WebRoot
在class文件中,根目录是WebRoot/WEB-INF/classes
当然你也可以用System.getProperty("user.dir")获取你工程的绝对路径。
项目中的 this.getServlet().getServletConfig().getServletContext().getRealPath("");
java中的 System.getProperty("user.dir")
jsp中获取项目路径 application.getRealPath("")
req.getServletContext().getRealPath("")