上传头像到服务器

来源:互联网 发布:淘宝那家茶叶好 编辑:程序博客网 时间:2024/05/01 17:29
    if(photo!=null){
                  String realpath = ServletActionContext.getServletContext().getRealPath("/factory/photo") ;//获取服务器路径
                  String targetFileName =StringUtil.getUuid()+"."+photoFileName.substring(photoFileName.lastIndexOf(".")+1);
                  target = new File(realpath, targetFileName);
                  FileUtils.copyFile(photo, target);
                  drug.setHeaderImg("factory/photo/"+targetFileName);
                }
0 0
原创粉丝点击