【发布时间】:2012-02-29 06:31:34
【问题描述】:
我正在尝试将媒体文件从手机上传到服务器。我已经从手机上传了图片文件到服务器。
Bitmap bitmap = BitmapFactory.decodeFile(imagepath);
ByteArrayOutputStream stream = new ByteArrayOutputStream();
bitmap.compress(Bitmap.CompressFormat.JPEG, 50, stream); //compress to which format you want.
byte [] byte_arr = stream.toByteArray();
image_str = Base64.encodeBytes(byte_arr);
现在我正在尝试上传视频文件,对于图像我们有 bitmap 和 bitmapfactory 要上传。但是任何关于图像的想法。如果您有任何解码视频文件的想法,请回复。
提前致谢。
【问题讨论】:
标签: android video file-upload ftp