forked from integrated_whb/integrated_whb
18 lines
487 B
Java
18 lines
487 B
Java
package com.zcloud.util;
|
|
|
|
import org.springframework.web.multipart.MultipartFile;
|
|
import sun.misc.BASE64Encoder;
|
|
|
|
import java.io.IOException;
|
|
|
|
public class Base64Util {
|
|
|
|
public static String getBase64String(MultipartFile multiPartFile) throws IOException {
|
|
String baseStr = null;
|
|
BASE64Encoder encoder = new BASE64Encoder();
|
|
baseStr = encoder.encode(multiPartFile.getBytes());
|
|
baseStr = baseStr.replaceAll("\r\n", "");
|
|
return baseStr;
|
|
}
|
|
}
|