hutool工具图片转Base64
时间: 2023-08-16 09:06:09 浏览: 1980
图片转Base64编码工具
可以使用Hutool工具中的ImageUtil类中的toBase64方法来将图片转换为Base64字符串。具体实现代码如下:
```java
import cn.hutool.core.io.FileUtil;
import cn.hutool.core.util.ImageUtil;
import java.io.File;
public class ImageToBase64Example {
public static void main(String[] args) {
// 图片文件路径
String imagePath = "D:/test.jpg";
// 读取图片并转换为Base64字符串
String base64 = ImageUtil.toBase64(FileUtil.file(imagePath));
System.out.println("图片Base64编码字符串:" + base64);
}
}
```
其中,需要引入Hutool工具的依赖,可以在pom.xml文件中添加以下内容:
```xml
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-all</artifactId>
<version>5.7.7</version>
</dependency>
```
阅读全文