Java 端代码 根据图片绝对路径获取图片的base64编码
public static String getImageStrFromPath(String imgPath) {
InputStream in = null;
byte[] data = null;
// 读取图片字节数组
try {
in = new FileInputStream(imgPath);
data = new byte[in.available()];
in.read(data);
in.close();
} catch (IOException e) {
e.printStackTrace();
}
// 对字节数组Base64编码
BASE64Encoder encoder = new BASE64Encoder();
// 返回Base64编码过的字节数组字符串
return encoder.encode(data);
}
将返回的字符串放入HTML的<img> 标签中
<img src="https://img-blog.csdnimg.cn/2022010617234674481.jpg" class="images" border="5px"/>