mirror of
https://github.com/yangzongzhuan/RuoYi-Cloud.git
synced 2025-09-09 20:39:23 +00:00
解决文件输入流为可能为空的问题
This commit is contained in:
@@ -1,6 +1,8 @@
|
||||
package com.ruoyi.file.service;
|
||||
|
||||
import java.io.InputStream;
|
||||
|
||||
import com.alibaba.nacos.common.utils.IoUtils;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.beans.factory.annotation.Value;
|
||||
import org.springframework.stereotype.Service;
|
||||
@@ -39,7 +41,7 @@ public class FastDfsSysFileServiceImpl implements ISysFileService
|
||||
InputStream inputStream = file.getInputStream();
|
||||
StorePath storePath = storageClient.uploadFile(inputStream, file.getSize(),
|
||||
FileTypeUtils.getExtension(file), null);
|
||||
inputStream.close();
|
||||
IoUtils.closeQuietly(inputStream);
|
||||
return domain + "/" + storePath.getFullPath();
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user