码迷,mamicode.com
首页 > 编程语言 > 详细

java实现图片转化成base64字符串前端页面直接显示

时间:2020-05-09 16:52:31      阅读:116      评论:0      收藏:0      [点我收藏+]

标签:调用   ges   finally   返回   字节   throw   ace   byte   turn   

应用场景:图片上传至服务器至指定目录,前端请求返回base64字符串直接显示浏览图片。
以下是工具方法,直接调用
/**
* 图片转化成base64字符串,返回的string可以直接在src上显示
* @param file 图片文件
* @param fileType 图片格式
* @return
* @throws IOException
*/
public static String getImageStr(File file, String fileType) throws IOException {
String fileContentBase64 = null;
String base64Str = "data:" + fileType + ";base64,";
String content = null;
//将图片文件转化为字节数组字符串,并对其进行Base64编码处理
InputStream in = null;
byte[] data = null;
//读取图片字节数组
try {
in = new FileInputStream(file);
data = new byte[in.available()];
in.read(data);
in.close();
//对字节数组Base64编码
if (data == null || data.length == 0) {
return null;
}
content = Base64.encodeBytes(data);
if (content == null || "".equals(content)) {
return null;
}
fileContentBase64 = base64Str + content;
} catch (IOException e) {
e.printStackTrace();
} finally {
if (in != null) {
in.close();
}
}
return fileContentBase64;
}

java实现图片转化成base64字符串前端页面直接显示

标签:调用   ges   finally   返回   字节   throw   ace   byte   turn   

原文地址:https://www.cnblogs.com/zhengwj-joker/p/12858405.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!