从android发送文件到Dropbox

时间:2011-09-09 04:52:25

标签: android dropbox

我正在通过android在drop box上工作,我需要创建一个文件夹并从移动设备的SD卡向该文件夹发送文件(例如:.txt文件)..我可以使用以下语句成功创建文件夹< / p>

 Entry entry = api.createFolder("dropbox", "test_folder");

如何将文件从SD卡发送到Dropbox文件夹,我已在https://www.dropbox.com/developers/docs

中搜索过

但我还没找到合适的解决方案,请给我解决方案,将文件发送到Dropbox中的文件夹。

请帮助我,提前谢谢....

1 个答案:

答案 0 :(得分:0)

也许您想使用Android-Api并查看

public int putFile(String root, String dbPath, File localFile)

 public File getFile(String root, String dbPath, File localFile, String etag)

我认为它的使用是直截了当的。