자바 - MultipartFile to file

salgu·2022년 1월 4일
0
private File multipartFileToFile(MultipartFile file) throws IOException {
     File convFile = new File(file.getOriginalFilename());
    convFile.createNewFile();
    FileOutputStream fos = new FileOutputStream(convFile);
    fos.write(file.getBytes());
    fos.close();

    return convFile;
}
profile
https://github.com/leeeesanggyu, leeeesanggyu@gmail.com

0개의 댓글