将字符串内容上传到google doc

时间:2012-04-10 15:53:05

标签: c# .net google-docs google-docs-api

我想知道我是否可以在不上传文档的情况下在Google文档上创建文档.. 我只是想从我的c#windows应用程序中传递一个文本框的值,并将其存储到google docs服务器上。 我不想在谷歌文档上创建任何中间文件上传..我将文本框数据存储在ms访问数据库中,我希望它也可以保存在谷歌文档中..

1 个答案:

答案 0 :(得分:2)

尝试使用以下代码:

DocumentsService service = new DocumentsService("MyApp");

// TODO: Authorize the service object

Stream stream = new MemoryStream(ASCIIEncoding.Default.GetBytes("This is the document content"));

DocumentEntry entry = service.Insert(new Uri(DocumentsListQuery.documentsBaseUri), stream, "text/plain", "Document title") as DocumentEntry;