Java base64 转图片
时间: 2024-03-07 10:45:55 浏览: 105
Base64转图片
5星 · 资源好评率100%
在Java中,可以使用Base64编码将图片转换为字符串,也可以使用Base64解码将字符串转换回图片。下面是一个简单的示例代码:
```java
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.Base64;
public class Base64ImageConverter {
public static void main(String[] args) {
String base64Image = "iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAA...";
String imagePath = "image.png";
try {
// 解码Base64字符串为字节数组
byte[] imageBytes = Base64.getDecoder().decode(base64Image);
// 将字节数组写入图片文件
FileOutputStream imageOutFile = new FileOutputStream(imagePath);
imageOutFile.write(imageBytes);
imageOutFile.close();
System.out.println("图片已成功转换并保存为 " + imagePath);
} catch (IOException e) {
System.out.println("转换失败:" + e.getMessage());
}
}
}
```
在上面的代码中,`base64Image`是Base64编码的图片字符串,`imagePath`是要保存的图片文件路径。首先,我们使用`Base64.getDecoder().decode()`方法将Base64字符串解码为字节数组。然后,我们使用`FileOutputStream`将字节数组写入到指定路径的图片文件中。
请注意,这只是一个简单的示例,实际应用中可能需要处理异常、添加错误检查等。另外,你需要将`base64Image`替换为你实际的Base64编码的图片字符串,以及指定正确的图片文件路径。
阅读全文