1、将资源文件在工程中的路径转换成真实路径
使用ServletContext()对象的String getRealPath("工程路径");
示例代码:
String path = this.getServletContext().getRealPath("/doc/abc.txt");File file = new File(path);
使用ServletContext()对象的String getRealPath("工程路径");
示例代码:
String path = this.getServletContext().getRealPath("/doc/abc.txt");