728x90

http://blog.naver.com/PostView.nhn?blogId=stork838&logNo=220142660973&parentCategoryNo=&categoryNo=37&viewDate=&isShowPopularPosts=true&from=search

 

멀티파트파일을 java.io.File로 변환하기 ( converting MultipartFile to File )

스프링에서 제공하는 멀티파트파일객체를 자바의 파일객체로 변환하는 방법을 소개한다.public File conve...

blog.naver.com

 

https://cnpnote.tistory.com/entry/SPRING-%EB%A9%80%ED%8B%B0-%ED%8C%8C%ED%8A%B8-%ED%8C%8C%EC%9D%BC%EC%9D%84-%ED%8C%8C%EC%9D%BC%EB%A1%9C-%EB%B3%80%ED%99%98%ED%95%98%EB%8A%94-%EB%B0%A9%EB%B2%95

 

[SPRING] 멀티 파트 파일을 파일로 변환하는 방법?

멀티 파트 파일을 파일로 변환하는 방법? 다중 파트 파일 (org.springframework.web.multipart.MultipartFile)을 File (java.io.File)로 변환하는 가장 좋은 방법은 무엇입니까? 내 봄 mvc 웹 프로젝트에서 나는 M..

cnpnote.tistory.com

 

public File convert(MultipartFile file)
{    
    File convFile = new File(file.getOriginalFilename());
    convFile.createNewFile(); 
    FileOutputStream fos = new FileOutputStream(convFile); 
    fos.write(file.getBytes());
    fos.close(); 
    return convFile;
}
public File multipartToFile(MultipartFile multipart) throws IllegalStateException, IOException 
{
    File convFile = new File( multipart.getOriginalFilename());
    multipart.transferTo(convFile);
    return convFile;
}

 

스프링에서 제공하는 multipartFile을 자바의 파일 객체 File로 변환하기 / transferTo / createNewFile() / FileOutputStream

+ Recent posts