我想使用Google Play服务将Google云端硬盘上传/下载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云端硬盘,我还没有找到一种简单的方式。你知道怎么做吗?
顺便说一下,我想使用自己的凭据(谷歌服务帐户)而不是用户帐户,用Google Play服务实现它的方法是什么?
提前致谢