AsynchttpClient下载文件,以文件流的形式
2021-05-16 19:30
} 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();
}
上一篇:css3 内容掉落效果
下一篇:JS操作元素属性(转)
文章标题:AsynchttpClient下载文件,以文件流的形式
文章链接:http://soscw.com/index.php/essay/86393.html