base64图片上传
Posted jylsgup
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了base64图片上传相关的知识,希望对你有一定的参考价值。
图片转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图片上传的主要内容,如果未能解决你的问题,请参考以下文章