标签: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();
}
标签:system storage exist map file color cat 成功 log
原文地址:http://www.cnblogs.com/princenwj/p/7746225.html