728x90
반응형
MultipartFile
-
Spring MVC - Spring에서 제공하는 MultipartFile을 이용한 파일 업로드Spring/Spring MVC 2022. 2. 17. 22:19
Spring에서 제공하는 MultipartFile을 이용한 파일 업로드 파일 업로드는 Spring에서 제공하는 MultipartFile 인터페이스를 이용하면 Servlet으로 했던 것과는 비교할 수 없을 정도로 편리하게 이용할 수 있다. MultipartFile 인터페이스 getName() : 넘어온 파라미터 명 getOriginalFilename() : 업로드 파일명 getContentType : 파일의 ContentType isEmpty() : 업로드된 파일이 비어있는지 확인 getSize() : 파일의 바이트 사이즈 getBytes() : 바이트 배열로 저장된 파일의 내용 getInputStream() : 파일의 내용을 읽기 위한 InputStream 반환 transferTo() : 파일 저장 pu..