我曾经使用 Google Eclipse Plugin 在我的项目中添加 Google Drive API v2,它成功了。(自动)
但是,当我通过在Drive API索引处下载google-api-services-drive-v2-rev89-java-1.15.0-rc.zip并包括我的项目来添加所有库时:添加到 /libs; 在 Java Build Path 中添加 jar;签入订单和导出(手动)。
错误显示在这里:
import com.google.api.client.http.GenericUrl;
import com.google.api.client.http.HttpResponse;
(这意味着不能导入 GenericUrl.java 和 HttpResponse.java 类)
和错误
The type com.google.api.client.googleapis.services.json.AbstractGoogleJsonClient cannot be resolved. It is indirectly referenced from required .class files
(这意味着 AbstractGoogleJsonClient 不存在)
在这里显示:
HttpResponse resp = service.getRequestFactory()
.buildGetRequest(new GenericUrl(file.getDownloadUrl()))
.execute();
请告诉我如何解决,
谢谢,