2

我想允许我的 Android 应用将电子表格文档上传到 Google 文档。使用一个简单的 Uri 请求:

Uri uri = Uri.parse("http://docs.google.com/DocAction?action=updoc&hl=en");
Intent intent = new Intent(Intent.ACTION_VIEW, uri);
startActivity(intent);

此页面在手机上显示为空白(必须使用与手机不兼容的代码)。

我查看了从 Web 服务上传的 Google Docs 程序。他们需要首先对用户进行身份验证并检索 AuthSub 授权以在后续 POST 请求(包括 AuthSub 令牌)中使用以实际上传文档。这对于可以保证返回 AuthSub 的 URL 的 Web 服务来说很容易,但是在手机上呢?

目前认为我将使用 UrlConnection,使用 getHeader(String) 来获取 AuthSub,然后像这样动态构建整个文档:

POST /feeds/default/private/full HTTP/1.1
Host: docs.google.com
GData-Version: 3.0
Authorization: <your authorization header here>
Content-Length: 73612
Slug: test.xls
Content-Type: application/vnd.ms-excel

<?xml version='1.0' encoding='UTF-8'?>
<Worksheet ss:Name="Sheet1">
<Table ss:ExpandedColumnCount="4" ss:ExpandedRowCount="4" x:FullColumns="1" x:FullRows="1">
<Row>
<Cell><Data ss:Type="String">IN</Data></Cell>
<Cell><Data ss:Type="String">OUT</Data></Cell>
<Cell><Data ss:Type="String">TIME</Data></Cell>
<Cell><Data ss:Type="String">SUBTOTAL</Data></Cell>
</Row>
<Row>
<Cell><Data ss:Type="String">Value</Data></Cell>
<Cell><Data ss:Type="Number">123</Data></Cell>
<Cell><Data ss:Type="String">Example</Data></Cell>
<Cell><Data ss:Type="String">Example</Data></Cell>
</Row>
</Table>
</Worksheet>

任何有任何经验或建议的人 - 都希望听到评论。

谢谢,

生锈的

4

1 回答 1

0

在 Google Docs 文档中找到所有必要的信息。

http://code.google.com/apis/documents/docs/3.0/developers_guide_java.html

于 2010-07-22T03:42:57.967 回答