gpt4 book ai didi

java - 无法通过 java api 将 google 格式的图像文件上传到 Google Doc

转载 作者:行者123 更新时间:2023-12-01 15:25:05 25 4
gpt4 key购买 nike

我需要将图像上传到谷歌格式的谷歌文档中,以便检索它并保存存储使用情况。下面是我的代码示例,它工作正常,但最近损坏了,我得到的只是一个空文档。有人可以帮助我吗?

DocsService client = new DocsService("testappv1"); 
client.setUserCredentials(username, password);
client.setProtocolVersion(DocsService.Versions.V2);
File file = new File("C:/test.jpg");
DocumentEntry newDocument = new DocumentEntry();
newDocument.setTitle(new PlainTextConstruct("test"));
String mimeType = DocumentListEntry.MediaType.fromFileName(file.getName()).getMimeType();
newDocument.setMediaSource(new MediaFileSource(file, mimeType));
newDocument = client.insert(destFolderUrl, newDocument);

最佳答案

请看看这个answer 。另外,从代码中删除这一行:

client.setProtocolVersion(DocsService.Versions.V2);

您应该尽可能使用默认版本 (3.0)。

关于java - 无法通过 java api 将 google 格式的图像文件上传到 Google Doc,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10277322/

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