java将byte[]写入File[] images = new File[6]中下标为0的代码
时间: 2023-10-20 18:05:48 浏览: 82
手机移动开发将byte数组写入文件的JAVA代码
4星 · 用户满意度95%
可以像下面这样实现:
```
byte[] bytes = new byte[]{1, 2, 3};
File[] images = new File[6];
images[0] = new File("image1.jpg");
try (FileOutputStream fos = new FileOutputStream(images[0])) {
fos.write(bytes);
} catch (IOException e) {
e.printStackTrace();
}
```
这段代码会将长度为3的byte数组写入到images数组下标为0的文件中。请注意,这里使用了Java 7中的try-with-resources语法,确保文件流在使用完成后被正确关闭。
阅读全文