Java

Base64 인코딩 데이터 MultipartFile 객체로 생성

심나라 2022. 5. 17. 15:47
728x90

Base64 인코딩된 이미지 데이터를 MultipartFile 객체로 생성하는 소스.

스프링 프레임워크에서 제공하는 MultipartFile 인터페이스를 구현해야 합니다. 

class BASE64DecodedMultipartFile implements MultipartFile {

	private final byte[] imgContent;
	private final String header;

	public BASE64DecodedMultipartFile(byte[] imgContent, String header) {
		this.imgContent = imgContent;
		this.header = header.split(";")[0];
	}

	@Override
	public String getName() {
		// TODO - implementation depends on your requirements
		return System.currentTimeMillis() + Math.random() + "." + header.split("/")[1];
	}

	@Override
	public String getOriginalFilename() {
		// TODO - implementation depends on your requirements
		return System.currentTimeMillis() + (int)Math.random() * 10000 + "." + header.split("/")[1];
	}

	@Override
	public String getContentType() {
		// TODO - implementation depends on your requirements
		return header.split(":")[1];
	}

	@Override
	public boolean isEmpty() {
		return imgContent == null || imgContent.length == 0;
	}

	@Override
	public long getSize() {
		return imgContent.length;
	}

	@Override
	public byte[] getBytes() throws IOException {
		return imgContent;
	}

	@Override
	public InputStream getInputStream() throws IOException {
		return new ByteArrayInputStream(imgContent);
	}

	@Override
	public void transferTo(File dest) throws IOException, IllegalStateException {
		new FileOutputStream(dest).write(imgContent);
	}


	public static MultipartFile base64ToMultipart(String base64) {
		try {
			String[] baseStrs = base64.split(",");

			// import sun.misc.BASE64Decoder; (sun 라이브러리 이용)
			// BASE64Decoder decoder = new BASE64Decoder();
			// byte[] b = new byte[0];
			// b = decoder.decodeBuffer(baseStrs[1]);

			// import java.util.Base64; (java.util 라이브러리 이용)
			Base64.Decoder decoder = Base64.getDecoder();
			byte[] b = decoder.decode(baseStrs[1]);

			for(int i = 0; i < b.length; ++i) {
				if (b[i] < 0) {
					b[i] += 256;
				}
			}
			return new BASE64DecodedMultipartFile(b, baseStrs[0]);
		} catch (Exception e) {
			e.printStackTrace();
			return null;
		}
	}

}

 

MultipartFile 객체 생성 소스

import org.springframework.web.multipart.MultipartFile;

String base64Data = "data:image/png;base64,iVBORw0KGgoAAAANSUhEU~~~~(인코딩 데이터)";
MultipartFile imgFile = BASE64DecodedMultipartFile.base64ToMultipart(base64Data);
728x90