我想从android发送一个文本文件到google驱动器。
我可以获得以下链接:
1。创建谷歌驱动器应用程序的步骤(意味着我应该选择什么)
2。需要Jar文件
第3。任何示例代码
4。清单内容
Google云端硬盘专家帮助我做到这一点。
答案 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.
最后确保您已在项目构建路径中添加了Google Play服务库。
您需要将android.permission.GET_ACCOUNTS
和android.permission.INTERNET
权限添加到 AndroidManifest.xml 文件中。
<uses-permission android:name="android.permission.GET_ACCOUNTS"/>
<uses-permission android:name="android.permission.INTERNET" />