在外部目录android中写入图像

时间:2016-08-26 05:09:29

标签: android file-handling

如何在电话簿中写入图像。目录已创建,但我无法在此文件夹中写入图像。这是我的代码。请先检查我是否做错了。

{{1}}

1 个答案:

答案 0 :(得分:0)

public void savePng(Bitmap bitmap, String filePath) {
    try {
        File temp = new File(filePath);
        FileOutputStream os = new FileOutputStream(temp + ".png");
        bitmap.compress(Bitmap.CompressFormat.PNG, 50, os);
        os.flush();
        os.close();
    } catch (Exception e) {
        e.printStackTrace();
    }
}