0

如何从其路径中获取 Google Docs FileEntry?

一旦我从 Google Docs 中的条目中获取路径,例如:

https://doc-04-20-docs.googleusercontent.com/docs/secure/m71240U1?h=1630126&e=download&gd=true

以后如何获取它们对应的FileEntries?

4

1 回答 1

0

在经过身份验证的 DocsService 上调用 getEntry 方法。

String rootUrl = "https://docs.google.com/feeds/default/private/full";
String path = //file entry's id
FileEntry entry = _service.getEntry(new URL(rootUrl + "/" + URLEncoder.encode(path, "UTF-8")), FileEntry.class);
于 2012-06-29T17:06:40.437 回答