如何从Google云端硬盘中的https://angular.io/docs/ts/latest/cookbook/component-communication.html下载设备上的文件?该文件夹对用户不可见,只有特定的应用程序才能使用它。
基本上,我需要在此文件夹中上传多个文件(某些应用程序和用户设置),然后我想将其下载回设备上。它的工作方式类似于用户数据的备份。
我已经在App文件夹中创建了文件,我可以这样读取它们:
DriveFile appFolderFile = driveApi.getFile(googleApiClient, driveId);
但我不知道如何上传现有文件,然后将这些文件下载到设备上的特定文件夹中。我搜索了文档,但没有找到解决方案。
在文档中,我找到了如何阅读和检索文件内容,但没有关于下载文件本身的信息。
有人可以给我一个如何做的暗示吗?或许,我只是错过了文档中的正确部分,或者甚至不可能,我必须使用REST API?
更新:
也许,我错了,下载文件内容和下载文件没有区别?
答案 0 :(得分:1)
要download files,您可以向文件的resource URL发出授权的HTTP GET
请求,并包含查询参数alt=media
,如下所示:
GET https://www.googleapis.com/drive/v3/files/0B9jNhSvVjoIVM3dKcGRKRmVIOVU?alt=media
Authorization: Bearer ya29.AHESVbXTUv5mHMo3RYfmS1YJonjzzdTOFZwvyOAUVhrs
下载文件要求用户至少具有读取权限。此外,您的应用必须使用允许读取文件内容的范围进行授权。例如,使用
drive.readonly.metadata
范围的应用程序无权下载文件内容。拥有编辑权限的用户可以通过将viewersCanCopyContent
字段设置为true来限制只读用户下载。
使用Drive API执行文件下载的示例:
String fileId = "0BwwA4oUTeiV1UVNwOHItT0xfa2M";
OutputStream outputStream = new ByteArrayOutputStream();
driveService.files().get(fileId)
.executeMediaAndDownloadTo(outputStream);
下载完成后,需要使用parent
参数将文件放入特定文件夹,然后在文件的parents
属性中指定正确的ID。
示例:
String folderId = "0BwwA4oUTeiV1TGRPeTVjaWRDY1E";
File fileMetadata = new File();
fileMetadata.setName("photo.jpg");
fileMetadata.setParents(Collections.singletonList(folderId));
java.io.File filePath = new java.io.File("files/photo.jpg");
FileContent mediaContent = new FileContent("image/jpeg", filePath);
File file = driveService.files().create(fileMetadata, mediaContent)
.setFields("id, parents")
.execute();
System.out.println("File ID: " + file.getId());
选中thread。
答案 1 :(得分:0)
按照代码
获取已保存在Google驱动器中的所有数据 public void retrieveContents(DriveFile file) {
Task<DriveContents> openFileTask =
getDriveResourceClient().openFile(file, DriveFile.MODE_READ_ONLY);
openFileTask.continueWithTask(new Continuation<DriveContents, Task<Void>>() {
@Override
public Task<Void> then(@NonNull Task<DriveContents> task) throws Exception {
DriveContents contents = task.getResult();
try (BufferedReader reader = new BufferedReader(
new InputStreamReader(contents.getInputStream()))) {
StringBuilder builder = new StringBuilder();
String line;
while ((line = reader.readLine()) != null) {
builder.append(line).append("\n");
}
Log.e("result ", builder.toString());
}
Task<Void> discardTask = MainActivity.this.getDriveResourceClient().discardContents(contents);
return discardTask;
}
})
.addOnFailureListener(new OnFailureListener() {
@Override
public void onFailure(@NonNull Exception e) {
}
});
}