多个文件上传
2021-05-06 08:28
标签:oss sftp require box bst div 封装 font ftp 多个文件上传 标签:oss sftp require box bst div 封装 font ftp 原文地址:https://www.cnblogs.com/zhou-tt/p/12100830.html
/**
* 封装上传方法
*
* @param request
* @param loanId
* @return
* @throws Exception
*/
public Map
String filePath = "";
String osskey = "";
Map
//提取上传文件
Map
//判断是否含有文件上传控件
if (files.size() > 0) {
//定义可以上传文件的类型
List
Map
filelimit.forEach((s) -> filelimitmap.put(s, s));
Set
//遍历集合
for (String key : keys) {
//判断为多文件上传
List
//判断是否有文件
if (fileList.size() == 0) {
continue;
}
StringBuilder str = new StringBuilder();
String filename = "";
//遍历集合上传文件
for (MultipartFile file : fileList) {
//判断是否有文件
if (file.getOriginalFilename().length() continue;
}
int id = 0;
//判断是否为限制的文件格式
filename = file.getOriginalFilename();
int lastIndexOf = filename.lastIndexOf(".");
String s = filename.substring(lastIndexOf + 1);
if (filelimitmap.get(s) == null) {
continue;
}
//1.放oss上返回key
osskey = OSS.uploadImage(file.getInputStream());
//2.放sftp返回一个路径 再存入file_data
filePath = SFTP.addFile(file.getInputStream(), loanId, file.getOriginalFilename(), osskey);
map.put("osskey", osskey); //阿里云oss key
map.put("filePath", filePath); //sftp返回的路径
map.put("fileName", filename);
map.put("ext", s);
id = adminDao.submitFileData(map);
System.out.println("返回的id" + id);
str.append(id + ",");
}
String strid = "" + str;
map.put(key, strid);
}
}
return map;
}
上一篇:二、Core授权-2 之.net core 基于Jwt实现Token令牌(策略)
下一篇:rabbit 在.net 环境下偶现(大概率):None of the specified endpoints were reachable 异常