1
import com.google.gdata.client.docs.DocsService;
import com.google.gdata.util.AuthenticationException;
import com.google.api.client.googleapis.*;
import com.google.api.client.googleapis.auth.clientlogin.*;
import com.google.api.client.googleapis.json.*;
import com.google.api.client.http.*;

import java.io.*;

public class AccountFeedExample {
  public static void main(String[] args) throws IOException, AuthenticationException {
      DocsService service = new DocsService("Document List Demo");
      service.setUserCredentials("username","password");
    }
  }

我正在尝试将上述代码作为 Android 应用程序运行,但 apk 崩溃了。我认为 Gdata 库是 Java 特定的。我可以在我的应用程序中使用任何 Gdata Android 特定库吗?

4

1 回答 1

0

您应该使用 Google Drive 客户端库(而不是 Google 文档列表客户端库)。正如在其他几个问题中所讨论的,GData 客户端库在 Android 上运行不佳。

Google Drive API 的文档:https ://developers.google.com/drive/

您需要下载 Drive 特定的包装:http ://code.google.com/p/google-api-java-client/wiki/APIs#Drive_API

以及具有依赖项的库的核心:http ://code.google.com/p/google-api-java-client/downloads/list

于 2012-07-19T12:31:50.283 回答