小程序base64图片解析成流上传服务器
Posted xadminhuyh
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了小程序base64图片解析成流上传服务器相关的知识,希望对你有一定的参考价值。
/**
*
* @Title: decodeBase64ToImage
* @Description: (將base64位的图片解码成流 上传到阿里云服务器)
* @param base64 图片的64进制码
* @param path 图片的本地生成地址
* @param imgName 图片名称
* @param uppath 图片的oss远程地址
* @param imgName void (这里描述输出参数的作用)
* @throws
* @author huyuhang
* @date 2019年3月12日 下午4:53:44
*/
public static void decodeBase64ToImage(String base64,String uppath) {
BASE64Decoder decoder = new BASE64Decoder();
byte[] decoderBytes;
try {
decoderBytes = decoder.decodeBuffer(base64);
ByteArrayInputStream inputStream = new ByteArrayInputStream(decoderBytes);
//上传到oss
if (uppath.startsWith("/")) {
uppath = uppath.substring(1);
}
//上传阿里云
//ossUtil.putObjectMethod(uppath,inputStream);
} catch (IOException e) {
e.printStackTrace();
}
}
以上是关于小程序base64图片解析成流上传服务器的主要内容,如果未能解决你的问题,请参考以下文章
小程序 使用upng.js 把小程序选择的图片转换为base64