【把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; }
推荐阅读
- appium 介绍及环境搭建
- uniapp——头部导航栏右侧图标+文字配置
- android studio 点击布局文件隐藏弹出的键盘。
- Mybatis中Mapper.xml文件中注释存在中文报错问题
- SpringBoot2.x 给Controller的RequestMapping添加统一前缀
- 在Intune中同步Apple VPP令牌
- APP网站安全漏洞检测服务解决方案
- 解决sdk更新时候报错 http://dl-ssl.google.com/android上不去,链接
- 第四次安卓