JAVA

간단한 multipart 파일 업로드

인생아 2018. 9. 5. 14:50
반응형
 
 @RequestMapping(value="/test")
 public void test(@RequestParam("file")MultipartFile file) throws Exception {
  FileOutputStream fos = new FileOutputStream("C:\\" + file.getOriginalFilename());
     fos.write(file.getBytes());
     fos.close();
 }
반응형