drop box java_使用dropbox java api上传二进制文件

本文提供了一段Java代码示例,展示了如何使用Dropbox API通过FileInputStream将本地文件(如JPG图片)上传到Dropbox账户。此方法适用于各种类型的文件,并确保了文件上传过程的正确性和完整性。
摘要由CSDN通过智能技术生成

我不认为你需要转换为字节数组,只需使用FileInputStream就足够了一个文件,txt以及二进制文件。以下代码有效,我刚用JPG测试过。

DropboxAPI> client = new DropboxAPI(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) {}

}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值