使用JSP如何在上传文件时自动创建一个新的文件夹
1个回答
2018-11-20 · 百度知道合伙人官方认证企业
关注
展开全部
//取出当天的日期,转换成字符串 String date = ...//savePath :存放路径,一般上传目录的根目录都是配置的.此处假定一个目录 String savePath ="/app/upload"; savePath = savePath + File.separator + date; //创建文件,如果不传在创建所有层次的目录 File dirFile = new File(savePath); if (!dirFile.exists()) { dirFile.mkdirs(); } //将文件重新命名,存放到指定目录 reName: 新的文件名 fileext:文件扩展名targetPath = savePath + File.separator + reName + "." + fileext;File targetfile = new File(targetPath); //save file ,此处使用的是apache的通用上传包item.write(targetfile);//remove temp fileitem.delete();
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询