关闭
小刚张嘎 2018-01-10 22:00 采纳率: 100%
浏览 3085
已采纳

Android保存图片失败,找不到原因,求指点!

public void saveBitmap() {

    Toast.makeText(MainActivity.this, "保存图片成功", 1).show();
        String state=Environment.getExternalStorageState();
        File file;

    try {
        if(Environment.MEDIA_MOUNTED.equals(state)){
            // 保存图片到SD卡上
           file = Environment.getExternalStorageDirectory();
        }else{
           file =getFilesDir();
        }

        FileOutputStream stream = new FileOutputStream(file.getPath()+System.currentTimeMillis()+".png");
        baseBitmap.compress(Bitmap.CompressFormat.PNG, 100, stream);
        Toast.makeText(MainActivity.this, "保存图片成功", 0).show();

        // Android设备Gallery应用只会在启动的时候扫描系统文件夹
        // 这里模拟一个媒体装载的广播,用于使保存的图片可以在Gallery中查看鿴
      //  Intent intent = new Intent();
       // intent.setAction(Intent.ACTION_MEDIA_MOUNTED);
       // intent.setData(Uri.fromFile(Environment.getDataDirectory()));
      //  sendBroadcast(intent);
        stream.flush();
        stream.close();

    } catch (Exception e) {
        Toast.makeText(MainActivity.this, "保存图片失败", 1).show();
        e.printStackTrace();
    }

}

    输出“保存图片失败”,  上面这一句也不会被执行:Toast.makeText(MainActivity.this, "保存图片成功", 1).show();为什么呢?但是把try下面的注释了就能执行到,求解!怎样才能保存在手机内存中?

展开全部

  • 写回答

8条回答 默认 最新

  • jesseCSD 2018-01-10 22:52
    关注

    FileOutputStream stream = new FileOutputStream(file.getPath()+System.currentTimeMillis()+".png");
    改成
    FileOutputStream stream = new FileOutputStream(file.getAbsolutePath()+"/"+System.currentTimeMillis()+".png");

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(7条)
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部