1

您能否指出一个代码或 url,我可以在其中找到一些示例如何使用 dropbox java api 并上传二进制文件,如 .doc 文件、jpg 和视频文件。

当前网络中的示例仅指向上传文本文件。但是,当我尝试使用 java InputStream 读取文件并将它们转换为字节数组并传递到保管箱文件上传函数时,文件会损坏。下载文件也有同样的问题。提前致谢。

问候,瓦鲁纳。

编辑——代码示例

FileInputStream fis = new FileInputStream(file);
ByteArrayOutputStream bos = new ByteArrayOutputStream();
byte [] buf = new byte[1024];
for(int readNum; (readNum = fis.read(buf)) != -1;) {
    bos.write(buf, 0, readNum);
    System.out.println("read "+ readNum + "bytes,");
}

ByteArrayInputStream inputStream2 = new ByteArrayInputStream(bos.toByteArray());

Entry newEntry = mDBApi.putFile("/uploads/"+file.getName(), inputStream2, file.toString().length(), null, null);
System.out.println("Done. \nRevision of file: " + newEntry.rev + " " + newEntry.mimeType);
return newEntry.rev;
4

2 回答 2

1

的第三个参数DropboxAPI.putFile()应该是从输入流中读取的字节数 - 您正在传递文件名的长度。

代替

Entry newEntry = mDBApi.putFile("/uploads/"+file.getName(), inputStream2,
            file.toString().length(), null, null);

采用

Entry newEntry = mDBApi.putFile("/uploads/"+file.getName(), inputStream2,
            bos.size(), null, null);
于 2012-04-15T00:01:59.167 回答
0

我认为您不需要转换为字节数组,只需使用 FileInputStream 就足以处理文件、txt 和二进制文件。以下代码有效,我只是用 JPG 测试过。

    DropboxAPI<?> client = new DropboxAPI<WebAuthSession>(session);

    FileInputStream inputStream = null;
    try {
        File file = new File("some_pic.jpg");
        inputStream = new FileInputStream(file);
        DropboxAPI.Entry newEntry = client.putFile("/testing.jpg", inputStream,
                file.length(), null, null);
        System.out.println("The uploaded file's rev is: " + newEntry.rev);
    } catch (DropboxUnlinkedException e) {
        // User has unlinked, ask them to link again here.
        System.out.println("User has unlinked.");
    } catch (DropboxException e) {
        System.out.println("Something went wrong while uploading.");
    } catch (FileNotFoundException e) {
        System.out.println("File not found.");
    } finally {
        if (inputStream != null) {
            try {
                inputStream.close();
            } catch (IOException e) {}
        }
    }
于 2012-07-11T17:35:53.447 回答