优化上传文件的类型识别,增加基于 filename 的读取

This commit is contained in:
YunaiV 2022-05-27 20:16:25 +08:00
parent 30fbfb6143
commit 86bb6f0b80

View File

@ -39,7 +39,7 @@ public class FileServiceImpl implements FileService {
@Override @Override
public String createFile(String path, byte[] content) throws Exception { public String createFile(String path, byte[] content) throws Exception {
// 计算默认的 path // 计算默认的 path
String type = FileTypeUtil.getType(new ByteArrayInputStream(content)); String type = FileTypeUtil.getType(new ByteArrayInputStream(content), path);
if (StrUtil.isEmpty(path)) { if (StrUtil.isEmpty(path)) {
path = DigestUtil.md5Hex(content) + '.' + type; path = DigestUtil.md5Hex(content) + '.' + type;
} }