案例文件打包下载

This commit is contained in:
xiezhijun
2021-03-08 18:00:25 +08:00
parent c9a8264f1e
commit 39ff2ed69c
7 changed files with 198 additions and 14 deletions

View File

@ -73,10 +73,10 @@ public class AliyunOSSUtils {
//去尾
String tail = oranName.substring(cutPoint);
//返回正确的带路径的图片名称
return prefix + head + tail + "_" + uuid;
return prefix + head + uuid + "_" + tail;
}
//不存在 直接返回
return prefix + oranName + "_" + uuid;
return prefix + uuid + "_" + oranName;
}
/**