* 서블릿에서 아래와 같이 빈 파일을 추가해준다. 1 2 3 4 5 6 7 8 9 10 11 12 Colored by Color Scripter cs 1 업로드 1 2 3 4 5 6 7 8 9 10 // step1. 파일 설정 MultipartFile multipartFile = request.getFile("File"); // step2. 주소 설정 String fileName = multipartFile.getOriginalFilename(); String filePath = "D:/Upload/" + fileName; // step3. 업로드 File file = new File(filePath); multipartFile.transferTo(file); cs 2 다운로드 1 2 3 4 5 6 7 ..