比如web路径是
c:\test\webroot\index.jsp
要获取到 "c:\test\webroot\ "
网络上找的两个方法都不大好
this.getClass().getClassLoader().getResource( "/ ").getPath()
getServletContext().getRealPath( " ")
它们都是得到classes里的路径,而且第二个只能在servlet里用
------解决方案--------------------
getServletContext().getRealPath();可以在JSP中找到指定的文件的真实路径
------解决方案--------------------
getServletContext().getRealPath();