使用 Google Docs API 下载任何类型的文件

发布于 2024-08-27 06:52:06 字数 239 浏览 7 评论 0原文

是否可以使用 Google 文档 API 从 Google 文档下载任何类型的文件? (jpg、zip、txt)

我可以弄清楚如何下载 word、powerpoint 和 excel 文件,但希望能够将任何类型的文件上传和下载到 Google 文档。我知道可以使用在线上传器来完成此操作,但似乎无法让下载部分与 API 一起使用。

我正在使用 API 的 Java 包装器。是否可以使用 Java 版本的 API 下载所有文件类型?

Is it possible to download files of any type from Google Docs using the Google Docs API? (jpg, zip, txt)

I can figure out how to download word, powerpoint, and excel files but want to be able to upload and download any type of file to Google Docs. I know it is possible to do this with the online uploader but can't seem to get the downloading part to work with the API.

I'm using the Java wrapper to the API. Is it possible to use the Java version of the API to download all file types?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

半葬歌 2024-09-03 06:52:06

自从编写了最后一个答案以来,该 API 已被弃用。 针对(较新的)Google Drive API 的 Google 开发者页面上有示例 Java 代码用于管理 Google 文档的下载。

它可以处理多种 MIME 类型。

Since the last answer was written, that API is deprecated. There's sample Java code on the Google Dev page for the (newer) Google Drive API for managing downloads from Google Docs.

This handles a large variety of MIME types.

星星的軌跡 2024-09-03 06:52:06

请参阅此页面 http://code.google.com/apis/documents/ docs/3.0/developers_guide_protocol.html

这用于专门下载文档和文件
http://code.google.com/apis/documents/docs /3.0/developers_guide_protocol.html#DownloadingDocsAndFiles

google返回的列出XML的文档在节点中具有文件类型和下载文件的URL。您可以使用 URL 下载文件内容。

See this page http://code.google.com/apis/documents/docs/3.0/developers_guide_protocol.html

and this for specifically downloading documents and files
http://code.google.com/apis/documents/docs/3.0/developers_guide_protocol.html#DownloadingDocsAndFiles

The document listing XML returned by google has file type and the URL to download the file in the node. You can use the URL to download the file contents.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文