栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 移动开发 > Android

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

Android 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

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

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

选择本地视频文件

附上Demo

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

Intent intent = new Intent();
  intent.setType("video
 @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();
      files = new ArrayList();
      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));
 }
 
 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 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) {
 }

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持考高分网。

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/158853.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号