作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
Drive Quick-start App 示例仅适用于将文件从 Android 设备上传到用户帐户。我想将文件从 Gdrive 下载到 android 应用程序。任何帮助将不胜感激。
我想要这个演示示例的完全逆向过程 https://developers.google.com/drive/quickstart-android (从 Gdrive 下载)
最佳答案
从云端硬盘下载文件内容有两个步骤。首先,检索文件的元数据和文件的 downloadUrl:
// retrieve metadata
File file = drive.files().get(fileId).execute();
然后,向 downloadUrl 发出经过身份验证的请求:
// download contents a
GenericUrl url = new GenericUrl(file.getDownloadUrl());
HttpResponse response = drive.getRequestFactory().buildGetRequest(url).execute();
String contents = new Scanner(response.getContent()).useDelimiter("\\A").next();
关于android - Google Drive 实现到 Android 应用程序并从 Google Drive 下载文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15921672/
我是一名优秀的程序员,十分优秀!