首页 > Web开发 > 详细

base64图片上传

时间:2019-09-22 10:15:50      阅读:94      评论:0      收藏:0      [点我收藏+]
图片转base64字符串网站:http://imgbase64.duoshitong.com/

// 前缀,比如data:image/jpeg;base64,
String prefix = imgBase64.substring(0, imgBase64.indexOf(",") + 1);
// 替换前缀为空
imgBase64 = imgBase64.replace(prefix, "");

byte[] bytes = new BASE64Decoder().decodeBuffer(imgBase64);
InputStream inputStream = new ByteArrayInputStream(bytes);

//处理inputStream
......

base64图片上传

原文:https://www.cnblogs.com/jylsgup/p/11565762.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!