简体   繁体   中英

Google Drive Implementation to Android app and Downloading the file from Google drive

Drive Quick-start App example works for only uploading files from Android Device to user account. I want to download the files from Gdrive to android app. any help will be appreciated.

I want exact reverse process of this Demo example https://developers.google.com/drive/quickstart-android (download it from Gdrive)

There are two steps to download file contents from Drive. First, retrieve the file's metadata and a downloadUrl for the file:

// retrieve metadata
File file = drive.files().get(fileId).execute();

And, make an authenticated request to the 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();

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM