如何使用 Dropbox API 通过 Android 将文件(图形、音频和视频文件)上传到 Dropbox?我遵循了Dropbox SDK Android页面上的教程,并且可以让示例正常工作。但是现在我想上传一个实际的 File 对象而不是 String 并且正在苦苦挣扎。
示例代码可以正常工作,如下所示:
String fileContents = "Hello World!";
ByteArrayInputStream inputStream = new ByteArrayInputStream(fileContents.getBytes());
try {
Entry newEntry = mDBApi.putFile("/testing_123456.txt", inputStream, fileContents.length(), null, null);
} catch (DropboxUnlinkedException e) {
Log.e("DbExampleLog", "User has unlinked.");
} catch (DropboxException e) {
Log.e("DbExampleLog", "Something went wrong while uploading.");
}
但是当我尝试更改它并使用此代码上传实际文件时:
File tmpFile = new File(fullPath, "IMG_2012-03-12_10-22-09_thumb.jpg");
// convert File to byte[]
ByteArrayOutputStream bos = new ByteArrayOutputStream();
ObjectOutputStream oos = new ObjectOutputStream(bos);
oos.writeObject(tmpFile);
bos.close();
oos.close();
byte[] bytes = bos.toByteArray();
ByteArrayInputStream inputStream = new ByteArrayInputStream(bytes);
try {
Entry newEntry = mDBApi.putFile("/IMG_2012-03-12_10-22-09_thumb.jpg", inputStream, tmpFile.length(), null, null);
} catch (DropboxUnlinkedException e) {
Log.e("DbExampleLog", "User has unlinked.");
} catch (DropboxException e) {
Log.e("DbExampleLog", "Something went wrong while uploading.");
}
我没有成功收到 DropboxException 错误。我认为我尝试将 File 对象转换为字节流的地方一定是错误的,但这只是一个假设。
除了 String 示例之外,Android 的 Dropbox 页面上没有其他任何文档记录。
谢谢你的帮助。