我如何不使用文件就能将BufferedImage转换为字节数组

时间:2019-03-05 08:08:50

标签: java nio

我正在尝试将BufferedImage转换为字节数组,但是每次遇到异常时,我都会得到一个返回bufferImage的服务,这是我的代码:

BufferedImage bufferedImage = myservice.getImage();
WritableRaster raster = bufferedImage.getRaster();
DataBufferByte data   = (DataBufferByte) raster.getDataBuffer();
 byte[] fileContent = data.getData();

此代码引发异常:

java.lang.ClassCastException: java.awt.image.DataBufferInt cannot be cast to java.awt.image.DataBufferByte

如何在不使用文件的情况下进行转换

1 个答案:

答案 0 :(得分:3)

您可以使用ByteArrayOutputStream类并使用以下代码从BufferedImage对象写入数据,

BufferedImage image = null; // you have the data in this object
ByteArrayOutputStream baos = new ByteArrayOutputStream();
ImageIO.write(image, "fileformat like png or jpg", baos);
baos.flush();
byte[] imageInByte = baos.toByteArray(); // you have the data in byte array
baos.close();

所有这些都只存在于内存中,而无需使用任何磁盘io或写入文件。