Android 7.0如何快速修复SD卡权限问题?
Android7.0系统把SD卡上的存储空间分成两种。第一种是Internal Storage,应用自己可以读写,其他应用没权限访问,主要存放应用的私有数据,使用时不需要申请权限,经常用来缓存数据。使用方法比如:String FILENAME = hello_file; String string = hello world!; FileOutputStream fos = openFileOutput(FILENAME, Context.MODE_PRIVATE); fos.write(string.getBytes()); fos.close();