Java图片上传实现方式
例举 MultipartFile 处理图片上传方式
2021年8月3日
核心代码块
public Result uploadImg(MultipartFile multipartFile, String imgKey) {
if (imgKey == null) {
return Result.error("缺失 imgKey !");
}
WxBackgroundDto wxBackgroundDto = new WxBackgroundDto();
try {
wxBackgroundDto.setImgKey(imgKey);
wxBackgroundDto.setImgData(multipartFile.getBytes