使用 Google Docs API 下载任何类型的文件
是否可以使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
自从编写了最后一个答案以来,该 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.
请参阅此页面 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.