I have tried this with and without the WRITE_INTERNAL_STORAGE permission.
Android中没有WRITE_INTERNAL_STORAGE权限。
How do I create this file for writing?
你不会,除非可能在有根的设备上,如果你的应用程序运行超级用户权限。您正在尝试写入内部存储器的根目录,哪些应用程序无权访问。
请使用接受File对象的FileOutputStream构造函数的版本。根据您可以写入的某个位置创建该File对象,例如:
> getFilesDir()(在你的Activity或其他Context上调用)
> getExternalFilesDir()(在你的Activity或其他Context上调用)
后者需要WRITE_EXTERNAL_STORAGE作为权限。
Is there an easier way than writing it to a file then reading from it again?
您可以暂时将其放在静态数据成员中。
because many people don’t have SD card slots
“SD卡插槽”是无关紧要的。 99%的Android设备用户将拥有外部存储设备 – 例外情况是用户删除其SD卡的4岁设备。自2010年中期以来制造的设备具有作为板载闪存的一部分的外部存储器,而不是可移动介质。