部署到Tomcat上的web项目的文件在代码中访问,可以先通过request获取到项目的根目录绝对路径,然后自己拼接子目录路径,直到文件。方法如下:
String realpath=request.getSession().getServletContext().getRealPath("/"); String filepath=realpath+"逐级拼接"; File file=new File(filepath);
时间: 2024-10-13 04:55:20
部署到Tomcat上的web项目的文件在代码中访问,可以先通过request获取到项目的根目录绝对路径,然后自己拼接子目录路径,直到文件。方法如下:
String realpath=request.getSession().getServletContext().getRealPath("/"); String filepath=realpath+"逐级拼接"; File file=new File(filepath);