0

我想使用 Google Play 服务将 Google Drive 上传/下载 txt 文件实现到我的 Android 应用程序,但我找不到正确的方法。

在 Dropbox 中非常简单:

File file = new File("working-draft.txt");
FileInputStream inputStream = new FileInputStream(file);
Entry response = mDBApi.putFile("/magnum-opus.txt", inputStream,
                            file.length(), null, null);
Log.i("DbExampleLog", "The uploaded file's rev is: " + response.rev);

但是对于带有 Google Play 服务的 Google Drive,我还没有找到这样的简单方法。你知道怎么?

顺便说一句,我想使用我自己的凭据(谷歌服务帐户)而不是用户帐户,用 Google Play 服务实现它的方法是什么?

提前致谢

4

1 回答 1

0

看看这里,它可以完成你提到的一切。不过,我不知道“简单”的要求。或者通过这里的官方演示代码。但这绝对不是“双线”的努力。

于 2014-05-17T16:28:59.190 回答