소스 검색

读取长度

lgs 11 달 전
부모
커밋
0b9a1dbb74
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/main/java/com/kexun/service/impl/ReportFileServiceImpl.java

+ 1 - 1
src/main/java/com/kexun/service/impl/ReportFileServiceImpl.java

@@ -93,7 +93,7 @@ public class ReportFileServiceImpl extends ServiceImpl<ReportFileMapper, ReportF
                 }
                 File file = new File(filePath);
                 if (file.exists()) {
-                    byte[] bytes = new byte[1024];
+                    byte[] bytes = new byte[4096];
                     ZipEntry entry = new ZipEntry(file.getName());
                     zipOutputStream.putNextEntry(entry);
                     FileInputStream fileInputStream = new FileInputStream(file);