欢迎来到代码驿站!

Android代码

当前位置:首页 > 移动开发 > Android代码

android选择视频文件上传到后台服务器

时间:2021-06-29 08:27:42|栏目:Android代码|点击:

本文实例为大家分享了android选择视频文件上传到后台服务器的具体代码,供大家参考,具体内容如下

选择本地视频文件

附上Demo

首先第一步打开打开相册选择视频文件:

Intent intent = new Intent();
  intent.setType("video/*");
  intent.setAction(Intent.ACTION_GET_CONTENT);
  intent.addCategory(Intent.CATEGORY_OPENABLE);
  ((Activity) ctx).startActivityForResult(intent,
 ProfilePhotoTask.PHOTO_CAMERA);

ProfilePhotoTask.PHOTO_CAMERA为请求返回码

第二步处理返回结果:

 /**
  * 视频回调
  */
 @Override
 public void onActivityResult(int requestCode, int resultCode, Intent data) {
  switch (requestCode) {

   case ProfilePhotoTask.PHOTO_CAMERA:
    if (resultCode == Activity.RESULT_OK) {
     try {
      Uri uri = data.getData();
      uri = BitmapCache.geturi(this, data);
      path = getPath(uri);
      File file = new File(path);
      if (!file.exists()) {
       break;
      }
      if (file.length() > 100 * 1024 * 1024) {
       commonToast("文件大于100M");
       break;
      }
      //传换文件流,上传
      submitVedio();
     } catch (Exception e) {
     } catch (OutOfMemoryError e) {
     }
    }
    break;

  }

 }

第三步转换文件为流进行上传:这种把文件全读到内存中,易内存泄露。已经修改为断点续传,参见开篇demo

 try {
      fInfos = new ArrayList<PhoneUploadFileInfo>();
      files = new ArrayList<ByteArrayInputStream>();
      PhoneUploadFileInfo fInfo = new PhoneUploadFileInfo();
      fInfo.setFileType(path.substring(path.lastIndexOf(".") + 1));
      fInfo.setOriginalName(path.substring(path
        .lastIndexOf("/") + 1));
      ByteArrayInputStream ins = FileUtil
        .getByteArrayInputStream(new File(path));
      files.add(ins);
      // 上传文件其他信息
      fInfos.add(fInfo);
      ins = null;

     } catch (Exception ex) {
      String a = ex + "";
     }

视频文件转换为流方法:

public static ByteArrayInputStream getByteArrayInputStream(File file){
  return new ByteArrayInputStream(getByetsFromFile(file));
 }
 /**
  * ByteArrayInputStream ins = new ByteArrayInputStream(picBytes);
  * @param file
  * @return
  */
 public static byte[] getByetsFromFile(File file){
  FileInputStream is = null;
  // 获取文件大小
  long length = file.length();
  // 创建一个数据来保存文件数据
  byte[] fileData = new byte[(int)length];

  try {
   is = new FileInputStream(file);
  } catch (FileNotFoundException e) {
   e.printStackTrace();
  }
  int bytesRead=0;
  // 读取数据到byte数组中
  while(bytesRead != fileData.length) {
   try {
    bytesRead += is.read(fileData, bytesRead, fileData.length - bytesRead);
    if(is != null)
     is.close();
   } catch (IOException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
   }
  }
  return fileData;
 }

断点续传核心代码:

try {
      File file = new File(path);
      FileInputStream is = null;
      // 获取文件大小
      long length = file.length();
      // 创建一个数据来保存文件数据
      byte[] fileData = null;
      try {
       is = new FileInputStream(file);
      } catch (FileNotFoundException e) {
       e.printStackTrace();
      }
      // 读取数据到byte数组中
      List<ByteArrayInputStream> temp = new ArrayList<>();
      int len = 0;
      fileData = new byte[1000 * 1000 * 2];
      //断点续传
      while ((len = is.read(fileData)) != -1) {
       temp = new ArrayList<>();
       ByteArrayInputStream byteArrayInputStream = new ByteArrayInputStream(fileData);
       temp.add(byteArrayInputStream);
       //这里是提交数组流到后台
//       RegisterControlService.submitVedioSon(
//         SubVedioViewActivity.this, temp, fInfos, subIdx);
       temp.clear();
       byteArrayInputStream.close();
      }
      if (is != null)
       is.close();
     } catch (Exception ex) {
 }

上一篇:monkeyrunner之安卓开发环境搭建教程(1)

栏    目:Android代码

下一篇:Android网络通信的实现方式

本文标题:android选择视频文件上传到后台服务器

本文地址:http://www.codeinn.net/misctech/149842.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有