文件整理,删除无用资源

This commit is contained in:
huangzhuanghua
2016-10-25 16:39:11 +08:00
parent 190296e533
commit 4471d95482
88 changed files with 2017 additions and 4560 deletions

View File

@ -240,7 +240,7 @@ public class FileUtils {
// 设置每次写入8192bytes
int bufferSize = 8192;
byte[] buffer = new byte[bufferSize]; // 8k
int length = -1;
int length;
// 从文件读取数据至缓冲区
while ((length = fStream.read(buffer)) != -1) {
// 将资料写入DataOutputStream中