我想使用 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 服务实现它的方法是什么?
提前致谢