修复使用FastDFS上传头像失败提示文件名没有后缀问题

pull/174/MERGE
RuoYi 2 years ago
parent 0ef63207f4
commit 8fdb3c4d14

@ -1,12 +1,12 @@
package com.ruoyi.file.service;
import org.apache.commons.io.FilenameUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Service;
import org.springframework.web.multipart.MultipartFile;
import com.github.tobato.fastdfs.domain.fdfs.StorePath;
import com.github.tobato.fastdfs.service.FastFileStorageClient;
import com.ruoyi.common.core.utils.file.FileTypeUtils;
/**
* FastDFS
@ -36,7 +36,7 @@ public class FastDfsSysFileServiceImpl implements ISysFileService
public String uploadFile(MultipartFile file) throws Exception
{
StorePath storePath = storageClient.uploadFile(file.getInputStream(), file.getSize(),
FilenameUtils.getExtension(file.getOriginalFilename()), null);
FileTypeUtils.getExtension(file), null);
return domain + "/" + storePath.getFullPath();
}
}

Loading…
Cancel
Save