要將byte數組寫入文件,可以使用FileOutputStream類來實現。
下面是一個示例代碼:
import java.io.FileOutputStream;
import java.io.IOException;
public class WriteByteArrayToFile {
public static void main(String[] args) {
try {
byte[] byteArray = {65, 66, 67, 68, 69}; // 生成一個byte數組
FileOutputStream fos = new FileOutputStream("output.txt");
fos.write(byteArray); // 將byte數組寫入文件
fos.close();
System.out.println("Byte array has been written to file successfully.");
} catch (IOException e) {
e.printStackTrace();
}
}
}
在上面的示例中,我們首先創建一個byte數組,然后使用FileOutputStream類創建一個輸出流并將byte數組寫入到指定的文件中。最后關閉輸出流。
運行該代碼后,將會在當前目錄下生成一個名為output.txt的文件,并且文件中的內容為byte數組中的內容。