MultipartFile保存文件

1、前端代码

                                                                  
上传证书:                                                                                                                   

2、后端代码

String basePath = SKOrgService.class.getClassLoader().getResource("").getPath()+"key/unionpayqrcode/"+wechatMerchantNo;
for(MultipartFile file : files){
    String filePath = basePath + "/" + file.getOriginalFilename();
    File desFile = new File(filePath);
    if(!desFile.getParentFile().exists()){
        desFile.mkdirs();
    }
    try {
        file.transferTo(desFile);
    } catch (IllegalStateException | IOException e) {
        e.printStackTrace();
        result.put("msg", "处理失败");
        return result;
    }
}


你可能感兴趣的:(java基础)