編寫原始位元組陣列
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 的磨損。