JSP 파일 업로드
[개요] "최범균의 JSP 2.0 프로그래밍" 이라는 책의 내용중 파일업로드 하는 부분이 나오는데, 해당 라이브러리의 버전이 오래된 것이어서 테스트에 약간의 문제가 있었습니다. 이에 최신 버전으로 테스트할 수 있는 예제 소스를 정리해보았습니다. Java의 파일 업로드 모듈로 많이 사용되는 Apache commons fileUpload 의 최신 버전은 2008년 12월 31일 현재 1.2.1 입니다.또한, FileUpload 는 commons-io 1.3.2 에 의존적입니다. [예제] ◎ fileUploadForm.jsp <%@ page contentType="text/html; charset=utf-8" %> <html> <head><title>파일 업로드 폼</title></head> <body> <form action="processFileUpload.jsp" method="post" enctype="multipart/form-data"> 파일1: <input type="file" name="file1" /><br/> 파일2: <input type="file" name="file2" /><br/> 파일3: <input type="file" name="file3" /><br/> 파라미터1: <input type="text" name="param1" /><br/> 파라미터2: <input type="text" name="param2" /><br/> 파라미터3: <input t