将 Base64 编码的图像写入文件使用 Java 8 的 Base64 API
如何将 Base64 编码的图像写入文件?
我已使用Base64将图像编码为字符串。首先,我读取文件,然后将其转换为字节数组,然后应用 Base64 编码将图像转换为字符串。
现在我的问题是如何解码它。
byte dearr[] = Base64.decodeBase64(crntImage);
File outF = new File("c:/decode/abc.bmp");
BufferedImage img02 = ImageIO.write(img02, "bmp", outF);
该变量包含图像的字符串表示形式。crntImage