码迷,mamicode.com
首页 > Web开发 > 详细

AsynchttpClient下载文件,以文件流的形式

时间:2017-10-28 12:48:20      阅读:326      评论:0      收藏:0      [点我收藏+]

标签:system   storage   exist   map   file   color   cat   成功   log   

 /**
* 保存文件 以文件流的形式
*/

Bitmap bitmap = BitmapFactory.decodeByteArray(binaryData, 0, binaryData.length);
File directory = new File(Environment.getExternalStorageDirectory(), "asynchttp");
if (!directory.exists()) {
directory.mkdirs();//创建文件夹 MKDIRS S
}

File file = new File(directory, "picture" + System.currentTimeMillis() + ".jpg");
if (!file.exists()) {
try {
file.createNewFile();
} catch (IOException e) {
e.printStackTrace();
}
}
// 压缩格式
Bitmap.CompressFormat format = Bitmap.CompressFormat.JPEG;
// 压缩比例
int quality = 100;

if (file.exists()) {
file.delete();
}
try {
file.createNewFile();
OutputStream stream = new FileOutputStream(file);
bitmap.compress(format, quality, stream);//压缩格式 压缩比例 输出流
stream.close();
Log.e(TAG, "onSuccess: "+"保存成功" );
} catch (IOException e) {
e.printStackTrace();
}

AsynchttpClient下载文件,以文件流的形式

标签:system   storage   exist   map   file   color   cat   成功   log   

原文地址:http://www.cnblogs.com/princenwj/p/7746225.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!