最近做项目用到文件上传功能用的是tomcat6以上版本(tomcat6不支持我的jre版本所以没有用).使用该路径:String directoryRealPath =servlet.getServletContext().getRealPath(“/WEB-INF/Files”);时可以把文件上传,但是路径是在服务器webapp下的项目里,每次clean/redeploy或重启服务器时都会把上传的文件给清除了(不知道为什么我其他同学用tomcat6却不会出现这个问题的说).在网上找了几个方法说虚拟路径可以用(只有配置,没有使用过程),所以就使用了虚拟路径上传把我的经验写下来,希望能帮到需要帮助的人
修改完以上配置后需重启服务器方能生效的说
String filePath="D:" + File.separator + "apache-tomcat" + File.separator
+ "apache-tomcat-8.0.26" + File.separator + "upload" + File.separator + "images";
File storeDirectory = new File(filePath);
if (!storeDirectory.exists()) {
storeDirectory.mkdirs();
}
上传文件时把文件传入你的设置的虚拟路径即可(恕我笨拙,我也只能写这样的死路经,试了网上的好多方法都不能把文件写入项目工作目录或其他非服务器webapp目录)
String path=request.getContextPath();
String directoryRealPath=request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/upload/images";
File storeDirectory = new File(directoryRealPath);
http://localhost:8080/upload/images/a.jpg
"http://localhost:8080/upload/images/${b.imgurl}"/>
只是文件上传而已,没有使用虚拟路径和jsp读取