以前は、Google Eclipse プラグインを使用してプロジェクトに Google Drive API v2 を追加していましたが、(自動的に) 成功しました。
しかし、ドライブ APIインデックスでgoogle-api-services-drive-v2-rev89-java-1.15.0-rc.zipをダウンロードしてすべてのライブラリを追加し、私のプロジェクトを含めると、/libs に追加します。Java ビルド パスに 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();
直し方を教えてください、
ありがとう、