当前位置:   article > 正文

安卓手把手教你结合阿里云OSS存储实现视频(音频,图片)的上传与下载_osscredentialprovider方法要下载什么包

osscredentialprovider方法要下载什么包

首先,明白阿里云OSS是个什么鬼

阿里云对象存储(Object Storage 
Service,简称OSS),是阿里云对外提供的海量,安全,低成本,高可靠的云存储服务。用户可以通过调用API,在任何应用、任何时间、任何地点上传和下载数据,也可以通过用户Web控制台对数据进行简单的管理。OSS适合存放任意文件类型,适合各种网站、开发企业及开发者使用。

以上是官方解释。可以看出,OSS可以为我们在后台保存任何数据,强大无比。

步入正题: 
首先你得有个阿里云账号(淘宝账号也可以哦,毕竟阿里账号都通用),然后登陆后进入管理控制台,并点击进去选择对象存储OSS,点击立即开通。 
这里写图片描述 
这里写图片描

点击立即开通。认证过后,提示开通成功,然后进入OSS控制台。 
这里写图片描述

这里写图片描述
这里写图片描述

到这里它会提示我们新建一个bucket,bucket就相当于我们的总仓库名称。填写名字,选择离自己所在地最近的区域,选择读写权限。 
这里写图片描述 
这里写图片描述 
这里写图片描述
可以看到我们的bucket已经创建成功,下来点击object管理,进去之后,我们就可以上传文件了。 
这里写图片描述
这里写图片描述
点击上传文件,上传成功后并刷新就可以看到我们的文件乖乖的呆在bucket里了。点击后面的获取地址就可以得到这个文件的(下载)访问路径了。 
这里写图片描述
最后在上边我们可以看到一个accesskeys,点击进去,创建自己的accesskey,注意一定要保密好,“钥匙”只能你自己有!!!!

最后一步,将我们需要的jar包和sdk导入lib中。下面给出下载链接: 
http://download.csdn.net/detail/u012534831/9501552

开始入手使用: 
这里写图片描述 
两个activity,两个xml。 
第一个Mainactivity中,点击选择视频,并填写文件名(也就是object名),选择后点击上传,上传完成提示uploadsuccess,可以在OSS后台看到这个资源。再点击网络播放按钮,从后台下载这个视频并播放,同时实现了缓存到本地。

  1. public class MainActivity extends ActionBarActivity {
  2. private TextView tv,detail;
  3. private Button camerabutton,playbutton,selectvideo;
  4. private ProgressBar pb;
  5. private String path,objectname;
  6. private EditText filename;
  7. private static final int PHOTO_REQUEST_GALLERY = 2;// 从相册中选择
  8. @Override
  9. protected void onCreate(Bundle savedInstanceState) {
  10. super.onCreate(savedInstanceState);
  11. setContentView(R.layout.activity_main);
  12. findbyid();
  13. }
  14. private void findbyid() {
  15. // TODO Auto-generated method stub
  16. selectvideo= (Button) findViewById(R.id.camerabutton);
  17. detail= (TextView) findViewById(R.id.detail);
  18. tv = (TextView) findViewById(R.id.text);
  19. pb = (ProgressBar) findViewById(R.id.progressBar1);
  20. camerabutton = (Button) findViewById(R.id.camerabutton);
  21. playbutton= (Button) findViewById(R.id.playbutton);
  22. filename=(EditText) findViewById(R.id.filename);
  23. playbutton.setOnClickListener(new OnClickListener() {
  24. @Override
  25. public void onClick(View v) {
  26. // TODO Auto-generated method stub
  27. Intent intent = new Intent(MainActivity.this, PlayVideoActivity.class);
  28. //传过去一个object名
  29. intent.putExtra("objectname", objectname);
  30. //设置缓存目录
  31. intent.putExtra("cache",
  32. Environment.getExternalStorageDirectory().getAbsolutePath()
  33. + "/VideoCache/" + System.currentTimeMillis() + ".mp4");
  34. startActivity(intent);
  35. }
  36. });
  37. //上传按钮
  38. camerabutton.setOnClickListener(new OnClickListener() {
  39. @Override
  40. public void onClick(View v) {
  41. beginupload();
  42. }
  43. });
  44. }
  45. //从图库选择视频
  46. public void selectvideo(View view)
  47. {
  48. //跳到图库
  49. Intent intent = new Intent(Intent.ACTION_PICK);
  50. //选择的格式为视频,图库中就只显示视频(如果图片上传的话可以改为image/*,图库就只显示图片)
  51. intent.setType("video/*");
  52. // 开启一个带有返回值的Activity,请求码为PHOTO_REQUEST_GALLERY
  53. startActivityForResult(intent, PHOTO_REQUEST_GALLERY);
  54. }
  55. // /*
  56. // * 判断sdcard是否被挂载
  57. // */
  58. // private boolean hasSdcard() {
  59. // if (Environment.getExternalStorageState().equals(
  60. // Environment.MEDIA_MOUNTED)) {
  61. // return true;
  62. // } else {
  63. // return false;
  64. // }
  65. // }
  66. public void beginupload(){
  67. //通过填写文件名形成objectname,通过这个名字指定上传和下载的文件
  68. objectname=filename.getText().toString();
  69. if(objectname==null||objectname.equals("")){
  70. Toast.makeText(MainActivity.this, "文件名不能为空", 2000).show();
  71. return;
  72. }
  73. //填写自己的OSS外网域名
  74. String endpoint = "http://oss-cn-shanghai.aliyuncs.com";
  75. //填写明文accessKeyId和accessKeySecret,加密官网有
  76. OSSCredentialProvider credentialProvider = new OSSPlainTextAKSKCredentialProvider("**********", "********** ");
  77. OSS oss = new OSSClient(getApplicationContext(), endpoint, credentialProvider);
  78. //下面3个参数依次为bucket名,Object名,上传文件路径
  79. PutObjectRequest put = new PutObjectRequest("qhtmedia", objectname, path);
  80. if(path==null||path.equals("")){
  81. detail.setText("请选择视频!!!!");
  82. return;
  83. }
  84. tv.setText("正在上传中....");
  85. pb.setVisibility(View.VISIBLE);
  86. // 异步上传,可以设置进度回调
  87. put.setProgressCallback(new OSSProgressCallback<PutObjectRequest>() {
  88. @Override
  89. public void onProgress(PutObjectRequest request, long currentSize, long totalSize) {
  90. Log.d("PutObject", "currentSize: " + currentSize + " totalSize: " + totalSize);
  91. }
  92. });
  93. @SuppressWarnings("rawtypes")
  94. OSSAsyncTask task = oss.asyncPutObject(put, new OSSCompletedCallback<PutObjectRequest, PutObjectResult>() {
  95. @Override
  96. public void onSuccess(PutObjectRequest request, PutObjectResult result) {
  97. Log.d("PutObject", "UploadSuccess");
  98. //回调为子线程,所以去UI线程更新UI
  99. runOnUiThread(new Runnable() {
  100. @Override
  101. public void run() {
  102. // TODO Auto-generated method stub
  103. tv.setText("UploadSuccess");
  104. pb.setVisibility(ProgressBar.INVISIBLE);
  105. }
  106. });
  107. }
  108. @Override
  109. public void onFailure(PutObjectRequest request, ClientException clientExcepion, ServiceException serviceException) {
  110. // 请求异常
  111. runOnUiThread(new Runnable() {
  112. @Override
  113. public void run() {
  114. // TODO Auto-generated method stub
  115. pb.setVisibility(ProgressBar.INVISIBLE);
  116. tv.setText("Uploadfile,localerror");
  117. }
  118. });
  119. if (clientExcepion != null) {
  120. // 本地异常如网络异常等
  121. clientExcepion.printStackTrace();
  122. }
  123. if (serviceException != null) {
  124. // 服务异常
  125. tv.setText("Uploadfile,servererror");
  126. Log.e("ErrorCode", serviceException.getErrorCode());
  127. Log.e("RequestId", serviceException.getRequestId());
  128. Log.e("HostId", serviceException.getHostId());
  129. Log.e("RawMessage", serviceException.getRawMessage());
  130. }
  131. }
  132. });
  133. // task.cancel(); // 可以取消任务
  134. // task.waitUntilFinished(); // 可以等待直到任务完成
  135. }
  136. @Override
  137. protected void onActivityResult(int requestCode, int resultCode, Intent data) {
  138. if (requestCode == PHOTO_REQUEST_GALLERY) {
  139. // 从相册返回的数据
  140. if (data != null) {
  141. // 得到视频的全路径
  142. Uri uri = data.getData();
  143. //转化为String路径
  144. getRealFilePath(MainActivity.this,uri);
  145. }
  146. }
  147. super.onActivityResult(requestCode, resultCode, data);
  148. }
  149. /* 下面是4.4后通过Uri获取路径以及文件名一种方法,比如得到的路径 /storage/emulated/0/video/20160422.3gp,
  150. 通过索引最后一个/就可以在String中截取了*/
  151. public void getRealFilePath( final Context context, final Uri uri ) {
  152. if ( null == uri ) return ;
  153. final String scheme = uri.getScheme();
  154. String data = null;
  155. if ( scheme == null )
  156. data = uri.getPath();
  157. else if ( ContentResolver.SCHEME_FILE.equals( scheme ) ) {
  158. data = uri.getPath();
  159. } else if ( ContentResolver.SCHEME_CONTENT.equals( scheme ) ) {
  160. Cursor cursor = context.getContentResolver().query( uri, new String[] { MediaStore.Images.ImageColumns.DATA }, null, null, null );
  161. if ( null != cursor ) {
  162. if ( cursor.moveToFirst() ) {
  163. int index = cursor.getColumnIndex( MediaStore.Images.ImageColumns.DATA );
  164. if ( index > -1 ) {
  165. data = cursor.getString( index );
  166. }
  167. }
  168. cursor.close();
  169. }
  170. }
  171. path=data;
  172. String b = path.substring(path.lastIndexOf("/") + 1, path.length());
  173. //最后的得到的b就是:20160422.3gp
  174. detail.setText(b);
  175. }
  176. }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
  • 147
  • 148
  • 149
  • 150
  • 151
  • 152
  • 153
  • 154
  • 155
  • 156
  • 157
  • 158
  • 159
  • 160
  • 161
  • 162
  • 163
  • 164
  • 165
  • 166
  • 167
  • 168
  • 169
  • 170
  • 171
  • 172
  • 173
  • 174
  • 175
  • 176
  • 177
  1. public class PlayVideoActivity extends ActionBarActivity {
  2. private VideoView mVideoView;
  3. private TextView tvcache;
  4. private String localUrl,objectname;
  5. private ProgressDialog progressDialog = null;
  6. // private String remoteUrl = "http://f02.v1.cn/transcode/14283194FLVSDT14-3.flv";
  7. // private static final int READY_BUFF = 600 * 1024*1000;//当视频缓存到达这个大小时开始播放
  8. // private static final int CACHE_BUFF = 500 * 1024;//当网络不好时建立一个动态缓存区,避免一卡一卡的播放
  9. // private boolean isready = false;
  10. private boolean iserror = false;
  11. private int errorCnt = 0;
  12. private int curPosition = 0;
  13. private long mediaLength = 0;
  14. private long readSize = 0;
  15. private InputStream inputStream;
  16. @Override
  17. protected void onCreate(Bundle savedInstanceState) {
  18. super.onCreate(savedInstanceState);
  19. setContentView(R.layout.playvideo);
  20. findbyid();
  21. init();
  22. downloadview();
  23. }
  24. private void init() {
  25. // TODO Auto-generated method stub
  26. Intent intent = getIntent();
  27. objectname= intent.getStringExtra("objectname");
  28. this.localUrl = intent.getStringExtra("cache");
  29. mVideoView.setMediaController(new MediaController(this));
  30. // if (!URLUtil.isNetworkUrl(remoteUrl)) {
  31. // mVideoView.setVideoPath(remoteUrl);
  32. // mVideoView.start();
  33. // }
  34. mVideoView.setOnPreparedListener(new OnPreparedListener() {
  35. public void onPrepared(MediaPlayer mediaplayer) {
  36. dismissProgressDialog();
  37. mVideoView.seekTo(curPosition);
  38. mediaplayer.start();
  39. }
  40. });
  41. mVideoView.setOnCompletionListener(new OnCompletionListener() {
  42. public void onCompletion(MediaPlayer mediaplayer) {
  43. curPosition = 0;
  44. mVideoView.pause();
  45. }
  46. });
  47. mVideoView.setOnErrorListener(new OnErrorListener() {
  48. public boolean onError(MediaPlayer mediaplayer, int i, int j) {
  49. iserror = true;
  50. // errorCnt++;
  51. mVideoView.pause();
  52. showProgressDialog();
  53. return true;
  54. }
  55. });
  56. }
  57. private void showProgressDialog() {
  58. mHandler.post(new Runnable() {
  59. @Override
  60. public void run() {
  61. if (progressDialog == null) {
  62. progressDialog = ProgressDialog.show(PlayVideoActivity.this,
  63. "视频缓存", "正在努力加载中 ...", true, false);
  64. }
  65. }
  66. });
  67. }
  68. private void dismissProgressDialog() {
  69. mHandler.post(new Runnable() {
  70. @Override
  71. public void run() {
  72. if (progressDialog != null) {
  73. progressDialog.dismiss();
  74. progressDialog = null;
  75. }
  76. }
  77. });
  78. }
  79. private void downloadview() {
  80. // TODO Auto-generated method stub
  81. String endpoint = "http://oss-cn-shanghai.aliyuncs.com";
  82. // 明文设置secret的方式建议只在测试时使用,更多鉴权模式请参考官网
  83. OSSCredentialProvider credentialProvider = new OSSPlainTextAKSKCredentialProvider("**********", "**********");
  84. OSS oss = new OSSClient(getApplicationContext(), endpoint, credentialProvider);
  85. // 构造下载文件请求
  86. GetObjectRequest get = new GetObjectRequest("qhtmedia", objectname);
  87. @SuppressWarnings("rawtypes")
  88. OSSAsyncTask task = oss.asyncGetObject(get, new OSSCompletedCallback<GetObjectRequest, GetObjectResult>() {
  89. @Override
  90. public void onSuccess(GetObjectRequest request, GetObjectResult result) {
  91. // 请求成功回调
  92. Log.d("Content-Length", "" + result.getContentLength());
  93. //拿到输入流和文件长度
  94. inputStream = result.getObjectContent();
  95. mediaLength=result.getContentLength();
  96. showProgressDialog();
  97. byte[] buffer = new byte[2*2048];
  98. int len;
  99. FileOutputStream out = null;
  100. // long lastReadSize = 0;
  101. //建立本地缓存路径,视频缓存到这个目录
  102. if (localUrl == null) {
  103. localUrl = Environment.getExternalStorageDirectory()
  104. .getAbsolutePath()
  105. + "/VideoCache/"
  106. + System.currentTimeMillis() + ".mp4";
  107. }
  108. Log.d("localUrl: " , localUrl);
  109. File cacheFile = new File(localUrl);
  110. if (!cacheFile.exists()) {
  111. cacheFile.getParentFile().mkdirs();
  112. try {
  113. cacheFile.createNewFile();
  114. } catch (IOException e) {
  115. // TODO Auto-generated catch block
  116. e.printStackTrace();
  117. }
  118. }
  119. readSize = cacheFile.length();
  120. try {
  121. //将缓存的视频转换为流
  122. out = new FileOutputStream(cacheFile, true);
  123. } catch (FileNotFoundException e) {
  124. // TODO Auto-generated catch block
  125. e.printStackTrace();
  126. }
  127. if (mediaLength == -1) {
  128. return;
  129. }
  130. mHandler.sendEmptyMessage(VIDEO_STATE_UPDATE);
  131. try {
  132. while ((len = inputStream.read(buffer)) != -1) {
  133. // 处理下载的数据
  134. try{
  135. out.write(buffer, 0, len);
  136. readSize += len;
  137. } catch (Exception e) {
  138. e.printStackTrace();
  139. }
  140. }
  141. mHandler.sendEmptyMessage(CACHE_VIDEO_END);
  142. } catch (IOException e) {
  143. e.printStackTrace();
  144. }
  145. finally {
  146. if (out != null) {
  147. try {
  148. out.close();
  149. } catch (IOException e) {
  150. }
  151. }
  152. if (inputStream != null) {
  153. try {
  154. inputStream.close();
  155. } catch (IOException e) {
  156. }
  157. }
  158. }
  159. }
  160. @Override
  161. public void onFailure(GetObjectRequest request, ClientException clientExcepion, ServiceException serviceException) {
  162. // 请求异常
  163. if (clientExcepion != null) {
  164. // 本地异常如网络异常等
  165. clientExcepion.printStackTrace();
  166. }
  167. if (serviceException != null) {
  168. // 服务异常
  169. Log.e("ErrorCode", serviceException.getErrorCode());
  170. Log.e("RequestId", serviceException.getRequestId());
  171. Log.e("HostId", serviceException.getHostId());
  172. Log.e("RawMessage", serviceException.getRawMessage());
  173. }
  174. }
  175. });
  176. // task.cancel(); // 可以取消任务
  177. // task.waitUntilFinished(); // 如果需要等待任务完成
  178. }
  179. private final static int VIDEO_STATE_UPDATE = 0;
  180. private final static int CACHE_VIDEO_END = 3;
  181. private final Handler mHandler = new Handler() {
  182. @Override
  183. public void handleMessage(Message msg) {
  184. switch (msg.what) {
  185. case VIDEO_STATE_UPDATE:
  186. double cachepercent = readSize * 100.00 / mediaLength * 1.0;
  187. String s = String.format("已缓存: [%.2f%%]", cachepercent);
  188. // }
  189. //缓存到达100%时开始播放
  190. if(cachepercent==100.0||cachepercent==100.00){
  191. mVideoView.setVideoPath(localUrl);
  192. mVideoView.start();
  193. String s1 = String.format("已缓存: [%.2f%%]", cachepercent);
  194. tvcache.setText(s1);
  195. return;
  196. }
  197. tvcache.setText(s);
  198. mHandler.sendEmptyMessageDelayed(VIDEO_STATE_UPDATE, 1000);
  199. break;
  200. case CACHE_VIDEO_END:
  201. if (iserror) {
  202. mVideoView.setVideoPath(localUrl);
  203. mVideoView.start();
  204. iserror = false;
  205. }
  206. break;
  207. }
  208. super.handleMessage(msg);
  209. }
  210. };
  211. private void findbyid() {
  212. // TODO Auto-generated method stub
  213. mVideoView = (VideoView) findViewById(R.id.bbvideoview);
  214. tvcache = (TextView) findViewById(R.id.tvcache);
  215. }
  216. }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
  • 147
  • 148
  • 149
  • 150
  • 151
  • 152
  • 153
  • 154
  • 155
  • 156
  • 157
  • 158
  • 159
  • 160
  • 161
  • 162
  • 163
  • 164
  • 165
  • 166
  • 167
  • 168
  • 169
  • 170
  • 171
  • 172
  • 173
  • 174
  • 175
  • 176
  • 177
  • 178
  • 179
  • 180
  • 181
  • 182
  • 183
  • 184
  • 185
  • 186
  • 187
  • 188
  • 189
  • 190
  • 191
  • 192
  • 193
  • 194
  • 195
  • 196
  • 197
  • 198
  • 199
  • 200
  • 201
  • 202
  • 203
  • 204
  • 205
  • 206
  • 207
  • 208
  • 209
  • 210
  • 211
  • 212
  • 213
  • 214
  • 215
  • 216
  • 217
  • 218
  • 219
  • 220
  • 221
  • 222
  • 223
  • 224
  • 225
  • 226
  • 227
  • 228
  • 229
  • 230
  • 231

代码中注释已经很清楚了。有问题的大家可以问我,最后附上源码地址: 
https://github.com/qht1003077897/android-vedio-upload-and-download.git

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小小林熬夜学编程/article/detail/245965
推荐阅读
相关标签
  

闽ICP备14008679号