详见前文
版本的更替导致这个并不是被大佬们推荐使用;为了后期的适配,需要对此进行优化。
<application android:requestLegacyExternalStorage="true">
修改至如下存储路径:
File testfile = context.getExternalFilesDir(Environment.DIRECTORY_PICTURES).getAbsoluteFile();
参考资料-android将应用中图片保存到系统相册并显示
实际得到效果通过TM文件管理查看已经缓存到data文件中;只是系统相册没有读取到?!
图片依旧缓存到本地的data文件中。调整多次,现问题的核心是系统相册要正确读到这个文件并展示出来!
目前的相册缓存显示代码如下:
// 最后通知图库更新
context.sendBroadcast(new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE,
Uri.fromFile(new File(currentFile.getPath()))));
//加载
MediaStore.Images.Media.insertImage(context.getContentResolver(),
currentFile.getAbsolutePath(), currentFile.toString(), null);
// 最后通知图库更新
context.sendBroadcast(new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE,
Uri.fromFile(new File(currentFile.getPath()))));
callBack.onDownLoadSuccess(bitmap);
完整实现代码:
public void saveImageToGallery(Context context,ImageDownLoadCallBack imageDownLoadCallBack) {
callBack = imageDownLoadCallBack;
//获取二维码图片资源
Bitmap bitmap = BitmapFactory.decodeStream(getClass().getResourceAsStream("/res/drawable/wechat_qr_consult.jpg"));
// 文件路径资源加载
File file = context.getExternalFilesDir(Environment.DIRECTORY_PICTURES).getAbsoluteFile();
String fileName = "Zego";//图片存储的文件夹名字
File appDir = new File(file ,fileName);
if (!appDir.exists()) {
appDir.mkdirs();
}
fileName = System.currentTimeMillis() + ".jpg";
currentFile = new File(appDir, fileName);
FileOutputStream fos = null;
//判断是否已经下载到相册中,如果存在直接回调存在即可,反之就进行存储在相册操作
//进行存储操作
try {
fos = new FileOutputStream(currentFile);
bitmap.compress(Bitmap.CompressFormat.JPEG, 100, fos);
fos.flush();
}catch (FileNotFoundException e) {
ToastUtil.showToast(context,"FileNotFoundException");
e.printStackTrace();
} catch (IOException e) {
ToastUtil.showToast(context,"IOException");
e.printStackTrace();
} finally {
//关闭文件流
try {
if (fos != null) {
fos.close();
}
} catch (IOException e) {
ToastUtil.showToast(context,"关闭流失败");
e.printStackTrace();
}
}
//加载回调
if (bitmap != null && currentFile.exists()) {
//通知相册更新
try {
MediaStore.Images.Media.insertImage(context.getContentResolver(),
currentFile.getAbsolutePath(), currentFile.toString(), null);
//最后广播图库更新
context.sendBroadcast(new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE,
Uri.fromFile(new File(currentFile.getPath()))));
callBack.onDownLoadSuccess(bitmap);
} catch (FileNotFoundException e) {
e.printStackTrace();
}
} else {
callBack.onDownLoadFailed();
}
}
** public void saveImageToGallery(Context context,ImageDownLoadCallBack imageDownLoadCallBack) {
callBack = imageDownLoadCallBack;
//获取二维码图片资源
Bitmap bitmap = BitmapFactory.decodeStream(getClass().getResourceAsStream("/res/drawable/wechat_qr_consult.jpg"));
// 文件路径资源加载
File file = context.getExternalFilesDir(Environment.DIRECTORY_PICTURES).getAbsoluteFile();
String fileName = "Zego";//图片存储的文件夹名字
File appDir = new File(file ,fileName);
if (!appDir.exists()) {
appDir.mkdirs();
}
fileName = System.currentTimeMillis() + ".jpg";
currentFile = new File(appDir, fileName);
FileOutputStream fos = null;
//判断是否已经下载到相册中,如果存在直接回调存在即可,反之就进行存储在相册操作
//进行存储操作
try {
fos = new FileOutputStream(currentFile);
bitmap.compress(Bitmap.CompressFormat.JPEG, 100, fos);
fos.flush();
}catch (FileNotFoundException e) {
ToastUtil.showToast(context,"FileNotFoundException");
e.printStackTrace();
} catch (IOException e) {
ToastUtil.showToast(context,"IOException");
e.printStackTrace();
} finally {
//关闭文件流
try {
if (fos != null) {
fos.close();
}
} catch (IOException e) {
ToastUtil.showToast(context,"关闭流失败");
e.printStackTrace();
}
}
//加载回调
if (bitmap != null && currentFile.exists()) {
//通知相册更新
try {
MediaStore.Images.Media.insertImage(context.getContentResolver(),
currentFile.getAbsolutePath(), currentFile.toString(), null);
//最后广播图库更新
context.sendBroadcast(new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE,
Uri.fromFile(new File(currentFile.getPath()))));
callBack.onDownLoadSuccess(bitmap);
} catch (FileNotFoundException e) {
e.printStackTrace();
}
} else {
callBack.onDownLoadFailed();
}
}
现改变存储位置,不走之前的方式
// File file = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_PICTURES).getAbsoluteFile();//注意小米手机必须这样获得public绝对路径
数据流读取的时候最好要采用如下的控制,这个也是java7的特性。文件读取的时候要习惯使用这种写法,交由系统进行close。
//try-with-resources控制资源提高安全意识
try(FileOutputStream fos = new FileOutputStream(currentFile)){
bitmap.compress(Bitmap.CompressFormat.JPEG, 100, fos);
fos.flush();
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}