把bitmap转成文件存入APP项目目录

【把bitmap转成文件存入APP项目目录】知识为进步之母,而进步又为富强之源泉。这篇文章主要讲述把bitmap转成文件存入APP项目目录相关的知识,希望能为你提供帮助。
    app卸载之后文件消失; 或者存在项目BCache区,当手机空间不足都有可能被删除。

//把bitmap转成file public File getFile(Bitmap bitmap) {File file = new File(getFilesDir(), "payCode.png"); try { BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream(file)); bitmap.compress(Bitmap.CompressFormat.JPEG, 100, bos); bos.flush(); bos.close(); } catch (IOException e) { e.printStackTrace(); } return file; }

 

    推荐阅读