编写原始字节数组
File myFile = new File(getFilesDir(), "myData.bin");
FileOutputStream out = new FileOutputStream(myFile);
// Write four bytes one two three four:
out.write(new byte [] { 1, 2, 3, 4}
out.close()
此代码没有特定于 Android 的内容。如果经常写很多小值,请使用 BufferedOutputStream 来减少设备内部 SSD 的磨损。