소스 검색

[fixed] getRelFilePath 返回null 导致KkFileUtils.isAllowedUpload的空指针异常

lujiaming 1 년 전
부모
커밋
d8146f0495
1개의 변경된 파일7개의 추가작업 그리고 7개의 파일을 삭제
  1. 7 7
      server/src/main/java/cn/keking/utils/DownloadUtils.java

+ 7 - 7
server/src/main/java/cn/keking/utils/DownloadUtils.java

@@ -49,7 +49,13 @@ public class DownloadUtils {
         }
         ReturnResponse<String> response = new ReturnResponse<>(0, "下载成功!!!", "");
         String realPath = getRelFilePath(fileName, fileAttribute);
-        if (null == realPath || !KkFileUtils.isAllowedUpload(realPath)) {
+        if(!StringUtils.hasText(realPath)){
+            response.setCode(1);
+            response.setContent(null);
+            response.setMsg("下载失败:文件名不合法!" + urlStr);
+            return response;
+        }
+        if (!KkFileUtils.isAllowedUpload(realPath)) {
             response.setCode(1);
             response.setContent(null);
             response.setMsg("下载失败:不支持的类型!" + urlStr);
@@ -61,12 +67,6 @@ public class DownloadUtils {
             response.setMsg(fileName);
             return response;
         }
-        if(!StringUtils.hasText(realPath)){
-            response.setCode(1);
-            response.setContent(null);
-            response.setMsg("下载失败:文件名不合法!" + urlStr);
-            return response;
-        }
         if(realPath.equals("cunzhai")){
             response.setContent(fileDir + fileName);
             response.setMsg(fileName);