我需要将图片发送到dropbox中的文件夹。我已经发送了一个带有以下声明的.txt文件
int putFileResult = api.putFile("dropbox", "/Foldername", file);
现在我必须从SD卡发送图像,如何将图像发送到Dropbox,如何做到这一点。
我找到了一些在此link
中发送缩略图的解决方案但它没有解决我的问题。请告诉我发送图像的方式
提前致谢
答案 0 :(得分:0)
FileInputStream fis = new FileInputStream(mFile);
String path = mPath + mFile.getName();
mRequest = mApi.putFileOverwriteRequest(path, fis, mFile.length(), new ProgressListener() {
@Override
public long progressInterval() {
return 500;
}
public void onProgress(long bytes, long total) {
publishProgress(bytes);
}
});
if (mRequest != null) {
mRequest.upload();
return true;
}