无法将大文件上传到 Google 文档

Unable to upload large files to Google Docs(无法将大文件上传到 Google 文档)
本文介绍了无法将大文件上传到 Google 文档的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在 Google Docs 上上传文件为:

I am uploading documents on Google Docs as:

DocumentsService myService = new DocumentsService("");
myService.setUserCredentials("username@domain.com", password );
DocumentEntry newEntry = myService.UploadDocument(@"C:Sample.txt", "Sample.txt");

但是当我尝试上传 3 MB 的文件时,我得到一个异常:

But when I try to upload a file of 3 MB I get an exception:

未处理的类型异常'Google.GData.Client.GDataRequestException'发生在 Google.GData.Client.dll附加信息:执行请求失败:http://docs.google.com/feeds/documents/private/full

An unhandled exception of type 'Google.GData.Client.GDataRequestException' occurred in Google.GData.Client.dll Additional information: Execution of request failed: http://docs.google.com/feeds/documents/private/full

如何将大文件上传到 Google 文档?我正在使用 Google API 版本 2.

How can I upload large files to Google Docs? I am using Google API ver 2.

推荐答案

在您的代码中,您正尝试上传 .txt 文件.

In your code you are attempting to upload a .txt file.

这将被转换为 Google Docs文档"文件.

This will be converted to a Google Docs "Document" file.

可以转换的文件限制为 100 万个字符(大小为 2Mb).

Files that can be converted are limited to 1 Million characters of (2Mb in size).

如果您将扩展名类型更改为 Google 文档无法识别的内容(例如 .log),它将允许您上传最大 10Gb 的文件!虽然免费帐户只有 1Gb 的文件存储空间.

If you change the extension type to something that is not recognised by Google Docs (for example .log), it will allow you to upload a file of up to 10Gb! Although the free account only has 1Gb of storage for files.

这将允许您通过应用程序存储和检索文件,但用户将无法使用 Google 文档界面直接修改它们,尽管他们仍然可以下载文件.

This will allow you to store and retrieve files via your application, but the user will not be able to directly modify them with the Google docs interface, although they can still download it.

这篇关于无法将大文件上传到 Google 文档的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

DispatcherQueue null when trying to update Ui property in ViewModel(尝试更新ViewModel中的Ui属性时DispatcherQueue为空)
Drawing over all windows on multiple monitors(在多个监视器上绘制所有窗口)
Programmatically show the desktop(以编程方式显示桌面)
c# Generic Setlt;Tgt; implementation to access objects by type(按类型访问对象的C#泛型集实现)
InvalidOperationException When using Context Injection in ASP.Net Core(在ASP.NET核心中使用上下文注入时发生InvalidOperationException)
LINQ many-to-many relationship, how to write a correct WHERE clause?(LINQ多对多关系,如何写一个正确的WHERE子句?)