gpt4 book ai didi

java - 如何更新 google drive api v3 java 中已有的文件

转载 作者:搜寻专家 更新时间:2023-11-01 02:39:10 27 4
gpt4 key购买 nike

我试过下面的代码......没有任何运气......

private void updateFile(Drive service, String fileId) {
try {
File file = new File(); /********/
final java.io.File fileToUpdate = new java.io.File("D:/Work Data/Files/pdf.pdf");
FileContent mediaContent = new FileContent("image/pdf", fileToUpdate);
file = service.files().update(fileId, file, mediaContent).execute();
System.out.println(fileId);
} catch (Exception e) {
if (isDebug) {
e.printStackTrace();
}
}
}

也试过...

 private void updateFile(Drive service, String fileId) {
try {
File file = service.files().get(fileId).execute(); /********/
final java.io.File fileToUpdate = new java.io.File("D:/Work Data/Files/pdf.pdf");
FileContent mediaContent = new FileContent("image/pdf", fileToUpdate);
file = service.files().update(fileId, file, mediaContent).execute();
System.out.println(fileId);
} catch (Exception e) {
if (isDebug) {
e.printStackTrace();
}
}
}

每次我执行代码时,我都会得到以下堆栈跟踪:

java.lang.IllegalArgumentException
at com.google.api.client.repackaged.com.google.common.base.Preconditions.checkArgument(Preconditions.java:111)
at com.google.api.client.util.Preconditions.checkArgument(Preconditions.java:37)
at com.google.api.client.googleapis.media.MediaHttpUploader.setInitiationRequestMethod(MediaHttpUploader.java:872)
at com.google.api.client.googleapis.services.AbstractGoogleClientRequest.initializeMediaUpload(AbstractGoogleClientRequest.java:237)
at com.google.api.services.drive.Drive$Files$Update.<init>(Drive.java:3163)
at com.google.api.services.drive.Drive$Files.update(Drive.java:3113)
at com.test.DriveTester.updateFile(DriveTester.java:76)
at com.test.DriveTester.main(DriveTester.java:64)

谁能告诉我做错了什么?任何示例代码,即更新谷歌驱动器上现有文件的内容都会有所帮助......

最佳答案

对于 API v3,Android Enthusiast 提出的解决方案不幸地不起作用。问题在于这一点:

 // First retrieve the file from the API.
File file = service.files().get(fileId).execute();

这样做会创建一个文件对象,并设置其 ID 字段,当执行更新时,它会抛出异常,因为 ID 元字段不可直接编辑。

您可以做的只是创建一个新文件:

File file = new File();

如示例所示,根据需要更改您想要的元数据并更新文件内容。

然后按照上面的建议简单地更新文件:

// Send the request to the API.
File updatedFile = service.files().update(fileId, file, mediaContent).execute();

因此,基于 Android Enthusiast 解决方案的完整示例如下所示:

private static File updateFile(Drive service, String fileId, String newTitle,
String newDescription, String newMimeType, String newFilename, boolean newRevision) {
try {
// First create a new File.
File file = new File();

// File's new metadata.
file.setTitle(newTitle);
file.setDescription(newDescription);
file.setMimeType(newMimeType);

// File's new content.
java.io.File fileContent = new java.io.File(newFilename);
FileContent mediaContent = new FileContent(newMimeType, fileContent);

// Send the request to the API.
File updatedFile = service.files().update(fileId, file, mediaContent).execute();

return updatedFile;
} catch (IOException e) {
System.out.println("An error occurred: " + e);
return null;
}
}

关于java - 如何更新 google drive api v3 java 中已有的文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38539158/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com