Java将图片按base64解码,最后将base64解码后的图片文件保存到本地磁盘。
时间: 2023-10-19 22:11:59 浏览: 173
好的,让我为您解答这个问题。在Java中,可以使用Base64类将base64编码的字符串解码为字节数组,然后将字节数组写入文件。下面是一个简单示例的代码片段,它将base64解码后的图像文件保存到本地磁盘:
```java
import java.io.*;
public class SaveImageFromBase64 {
public static void main(String[] args) {
String base64Image = "your_base64_image_string_here";
String imagePath = "your_image_file_path_here";
//decode base64 string to byte array
byte[] imageBytes = javax.xml.bind.DatatypeConverter.parseBase64Binary(base64Image);
try {
//save byte array to image file
FileOutputStream fos = new FileOutputStream(imagePath);
fos.write(imageBytes);
fos.close();
System.out.println("Image saved successfully!");
} catch (IOException e) {
e.printStackTrace();
}
}
}
```
在上面的示例中,您需要将base64编码的字符串替换为您要保存的图像的字符串,并将图像文件路径替换为目标本地磁盘路径。此示例使用javax.xml.bind.DatatypeConverter提供的parseBase64Binary()方法将base64字符串解码为字节数组,并使用FileOutputStream将字节数组写入目标图像文件。
请注意,您需要将javax.xml.bind库添加到项目中以使用parseBase64Binary()方法。
阅读全文