时间:2021-05-20
本文实例为大家分享了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) { }以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
一:实现原理最近在做Android客户端的应用开发,涉及到要把图片上传到后台服务器中,自己选择了做Spring3MVCHTTPAPI作为后台上传接口,andro
回复图片、音频、视频消息都是需要media_id的,这个是需要将多媒体文件上传到微信服务器才有的。将多媒体文件上传到微信服务器,以及从微信服务器下载文件,可以参
一般在做文件上传的时候,都是通过客户端把要上传的文件上传到服务器,此时上传的文件都在服务器内存,如果上传的是视频等大文件,那么服务器内存就很紧张,而且一般我们都
上传方案一:先将文件上传到七牛,再将七牛上传返回的文件访问路径上传到服务器选取文件仅支持上传mp3文件,文件大小不超过500M上传到服务器exportdefau
Dedecms5.7上传到服务器后感觉进入后台首页很卡,而且服务器占用CPU会飚升,服务器和浏览器都会卡到。后来在论坛找到解决办法,如下:打开后台首页模板文件/