我可以使用以下代码从 Google Drive 下载原始文件:
public static InputStream downloadFile(Drive service, File file)
throws IOException {
if (file.getDownloadUrl() != null && file.getDownloadUrl().length() > 0) {
try {
HttpResponse resp = service.getRequestFactory()
.buildGetRequest(new GenericUrl(file.getDownloadUrl()))
.execute();
return resp.getContent();
} catch (IOException e) {
// An error occurred.
e.printStackTrace();
return null;
}
} else {
// The file doesn't have any content stored on Drive.
return null;
}
}
但是当下载许多文件以添加到网格视图中时,连接看起来真的很低。
因此,我需要列出缩略图而不是原始文件,因为它会更好地连接。
请帮我怎么样?