java web把上传的文件放在服务器端重新命名用什么方式?

java web把上传的文件放在服务器端重新命名用什么方式?,第1张

File file = uploadFilegetFile();//这里拿到你上传文件
SimpleDateFormat df = new SimpleDateFormat("yyyyMMddHHmmss");//设置日期格式
String date = dfformat(new Date());
int randomNum = (int) ((Mathrandom()9+1)100000);
String newFileName = date + randomNum + suffix;
String path = Fileseparator+"upload"+Fileseparator+folder+Fileseparator+newFileName;

File newFile = new File(PathKitgetWebRootPath()+path);
if(newFilegetParentFile() != null && !newFilegetParentFile()exists()){
newFilegetParentFile()mkdirs();
}
filerenameTo(newFile);//改名字并且保存

DABAN RP主题是一个优秀的主题,极致后台体验,无插件,集成会员系统
网站模板库 » java web把上传的文件放在服务器端重新命名用什么方式?

0条评论

发表评论

提供最优质的资源集合

立即查看 了解详情