0

我试图将文件上传到 samba。
因为Android上的限制缓冲区只有16mb左右,所以我拆分为10mb。
以下是我的上传代码:

try {
    int TempLength = 10 * 1024 * 1024;

    SmbFile file = new SmbFile(url, auth);
    SmbFileOutputStream out = new SmbFileOutputStream(file);

    File LocalFile = new File("filepath");

    FileInputStream fis = new FileInputStream(LocalFile);

    byte[] buffer = new byte[TempLength];

    int length = -1;
    while((length = fileInputStream.read(buffer)) != -1) {
        out.write(buffer);
        out.flush();
    }
    out.close();
    fis.close();
} 
catch (Exception e) {
    e.printStackTrace();
}

我尝试上传文件。
可以上传成功,但是文件大小会出错。
例如,如果我上传一个 15mb 的文件,那么上传的文件大小将显示为 20mb。
我该如何解决?

4

1 回答 1

1

尝试out.write(buffer, 0, length);

于 2013-07-12T03:09:40.633 回答