注释打印信息

master
hcy 2 years ago
parent 500a87a77e
commit 2cfd68292e

@ -256,7 +256,7 @@ public class BatchExportServiceImpl implements BatchExportService {
bis = new BufferedInputStream(new ByteArrayInputStream(file1)); bis = new BufferedInputStream(new ByteArrayInputStream(file1));
//输出 //输出
int len = 0; int len = 0;
byte[] buf = new byte[1024 * 1024]; byte[] buf = new byte[100 * 1024];
while ((len = bis.read(buf, 0, buf.length)) != -1) { while ((len = bis.read(buf, 0, buf.length)) != -1) {
bos.write(buf, 0, len); bos.write(buf, 0, len);
} }

@ -54,7 +54,7 @@ public class CompressFileUtils {
continue; continue;
} }
//输出文件路径信息 //输出文件路径信息
System.out.println(outPath); //System.out.println(outPath);
OutputStream out = new FileOutputStream(outPath); OutputStream out = new FileOutputStream(outPath);
byte[] buf1 = new byte[1024]; byte[] buf1 = new byte[1024];
@ -65,7 +65,7 @@ public class CompressFileUtils {
in.close(); in.close();
out.close(); out.close();
} }
System.out.println("******************解压完毕********************"); //System.out.println("******************解压完毕********************");
} }
/** /**

Loading…
Cancel
Save