如何将MultipartFile转换成based4
Posted qingmuchuanqi48
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何将MultipartFile转换成based4相关的知识,希望对你有一定的参考价值。
public String test(MultipartFile file) throws Exception{ BASE64Encoder base64Encoder =new BASE64Encoder(); String base64EncoderImg = file.getOriginalFilename()+","+ base64Encoder.encode(file.getBytes()); return base64EncoderImg; }
通过上面的这种方式,可以将MutipartFile转换成base64
以上是关于如何将MultipartFile转换成based4的主要内容,如果未能解决你的问题,请参考以下文章