### byte[] to File
```java
import org.apache.commons.io.IOUtils;
import java.io.FileOutputStream;
import java.io.IOException;
public class WriteByteArrayToFileExample {
public static void main(String[] args) {
byte[] byteArray = {65, 66, 67, 68, 69}; // Sample byte array
try {
FileOutputStream fos = new FileOutputStream("output.txt");
IOUtils.write(byteArray, fos);
fos.close();
System.out.println("Byte array has been written to file successfully.");
} catch (IOException e) {
System.err.println("Error writing byte array to file: " + e.getMessage());
}
}
}
```
在上面的範例中,我們將一個包含 ASCII 值的 byte array 寫入到一個檔案中,並使用 Apache Commons IO 的 IOUtils 來執行實際的寫入動作。如果成功寫入檔案,將會列印出 "Byte array has been written to file successfully.",如果有任何錯誤發生,將會列印出錯誤訊息。