使用write()方法,文件太大了

时间:2016-10-01 11:37:00

标签: java android arrays fileoutputstream

我尝试写一个文件,我从套接字收到的数据,我将数据存储在一个数组中但是当我写它们时,文件太大了... 我认为它是由使用大数组引起的,因为我不知道数据流的长度......

但是检查方法写入它表示write(byte [] b)将指定字节数组中的b.length个字节写入此文件输出流, write()方法读取数组的长度但长度为2000 ... 我如何知道将要写入的数据的长度?

...
byte[] Rbuffer = new byte[2000];
dis = new DataInputStream(socket.getInputStream());
dis.read(Rbuffer);
writeSDCard.writeToSDFile(Rbuffer);

...

void writeToSDFile(byte[] inputMsg){



    File root = android.os.Environment.getExternalStorageDirectory();
    File dir = new File (root.getAbsolutePath() + "/download");

    if (!(dir.exists())) {
         dir.mkdirs();
     }

    Log.d("WriteSDCard", "Start writing");

    File file = new File(dir, "myData.txt");

    try {
        FileOutputStream f = new FileOutputStream(file, true);
        f.write(inputMsg);
        f.close();
    } catch (FileNotFoundException e) {
        e.printStackTrace();
        Log.i(TAG, "******* File not found. Did you" +
                " add a WRITE_EXTERNAL_STORAGE permission to the   manifest?");
    } catch (IOException e) {
        e.printStackTrace();
    }
}

1 个答案:

答案 0 :(得分:2)

read()返回读取的字节数,或-1。您忽略了两种可能性,假设它填充了缓冲区。您所要做的就是将结果存储在变量中,检查-1,否则将其传递给write()方法。

实际上你应该将输入流传递给你的方法,并在创建文件后使用循环:

int count;
byte[] buffer = new byte[8192];
while ((count = in.read(buffer)) > 0)
{
    out.write(buffer, 0, count);
}

现在删除的注释中的声明表明每个数据包创建一个新的输入流是不正确的。