在android中将文本文件发送到谷歌驱动器

时间:2013-12-27 07:52:35

标签: android google-drive-api

我想从android发送一个文本文件到google驱动器。

我可以获得以下链接:

1。创建谷歌驱动器应用程序的步骤(意味着我应该选择什么)

2。需要Jar文件

第3。任何示例代码

4。清单内容

Google云端硬盘专家帮助我做到这一点。

1 个答案:

答案 0 :(得分:0)

从Google Android网站上的Quick Start开始。

完成所有身份验证过程后,请转到How to upload file to Google Drive

查看以下链接了解更多..

以下是创建和配置项目的步骤

在Eclipse中,创建一个新的Android应用程序项目。

- Type "Drive Quickstart" in Application Name.
- Select API 17: Android 4.2 for the Target SDK.
- Select Google APIs (Google Inc.) (API 17) for the Compile With.
- Leave all other fields with the default values and click Next.
- In all other pages, leave all settings with their default values and click Next till you can click Finish to complete the setup wizard.

按照上述步骤操作后,您需要将Google云端硬盘客户端库添加到项目中。

- Select Add Google APIs... from the Google Plugin for Eclipse dropdown.
- Select Drive API v2 from the list and click Finish.

enter image description here

最后确保您已在项目构建路径中添加了Google Play服务库。

  • 选择项目>属性> Java构建路径> Eclipse菜单中的库。 单击“添加外部JAR”。
  • 浏览 / extras / google / google_play_services / libproject / google-play-services_lib / libs ,选择 google-play-services.jar ,然后点击确定。
  • 在“订购和导出”标签中,确保选中 google-play-services.jar 文件的复选框。

您需要将android.permission.GET_ACCOUNTSandroid.permission.INTERNET权限添加到 AndroidManifest.xml 文件中。

<uses-permission android:name="android.permission.GET_ACCOUNTS"/>
<uses-permission android:name="android.permission.INTERNET" />

For more Details