String t=Thread.currentThread().getContextClassLoader().getResource("").getPath();
int num=t.indexOf(".metadata");
String path=t.substring(1,num).replace('/', '\\')+"项目名\\WebContent\\文件";
复制,亲测有效。
${pageContext.request.contextPath}
request.getContextPath()
过时的方法:request.getRealPath("")
推荐方法:request.getServletContext.getRealPath("")