Pre Merge pull request !313 from lujiaming/hotfix/compressFileView

This commit is contained in:
lujiaming 2025-04-14 08:11:28 +00:00 committed by Gitee
commit 93fd1c621c
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F

View File

@ -474,7 +474,7 @@ public class FileHandlerService implements InitializingBean {
boolean isCompressFile = !ObjectUtils.isEmpty(compressFileKey);
if (isCompressFile) { //判断是否使用特定压缩包符号
try {
originFileName = URLDecoder.decode(originFileName, uriEncoding); //转义的文件名 解下出原始文件名
originFileName = URLDecoder.decode(compressFilePath, uriEncoding); //转义的文件名 解下出原始文件名
attribute.setSkipDownLoad(true);
} catch (UnsupportedEncodingException e) {
e.printStackTrace();