본문 바로가기

개발중/Java

MultipartFile 파일 경로 가져오기

728x90
반응형

🖤 글이 도움이 되었다면 유튜브 클릭 해주세요 🖤
https://youtu.be/bz8h5adAHNc

MultipartFile 메소드

String getName() 파라미터의 이름 <input> 태그의 이름
String getOriginalFileName() 업로드 되는 파일의 이름
boolean isEmpty() 파일이 존재하지 않는 경우 true
long getSize() 업로드 되는 파일의 크기
byte[] getBytes() byte[]로 파일 데이터 반환
InputStream getInputStream() 파일데이터와 연결된 InputStream을 반환
transferTo(File file) 파일의 저장

 

728x90
반응형