码迷,mamicode.com
首页 > Web开发 > 详细

base64图片上传

时间:2019-09-22 10:27:46      阅读:115      评论:0      收藏:0      [点我收藏+]

标签:ref   substr   ace   ring   图片   array   ase   data   ima   

图片转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图片上传

标签:ref   substr   ace   ring   图片   array   ase   data   ima   

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

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