티스토리 뷰
파일 다운로드하는 코드다.
일단은 jsp 쪽에서 다운로드 링크를 클릭했을 때, 파라미터로 파일명을 넘겨줘야 한다.
그리고 파일 다운로드를 처리하는 쪽에서는 아래와 같이 해준다.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 | // 파일이 저장될 경로. String realPath = "D:/folder/workspace/projectName/WebContent/upfile/" ; // 파일 이름이 파라미터로 넘어오지 않으면 리다이렉트 시킨다. if (request.getParameter( "fileName" ) == null || "" .equals(request.getParameter( "fileName" ))){ response.sendRedirect( "/redirect.jsp" ); } else { // 파라미터로 받은 파일 이름. String requestFileNameAndPath = request.getParameter( "fileName" ); // 서버에서 파일찾기 위해 필요한 파일이름(경로를 포함하고 있음) // 한글 이름의 파일도 찾을 수 있도록 하기 위해서 문자셋 지정해서 한글로 바꾼다. String UTF8FileNameAndPath = new String(requestFileNameAndPath.getBytes( "8859_1" ), "UTF-8" ); // 파일이름에서 path는 잘라내고 파일명만 추출한다. String UTF8FileName = UTF8FileNameAndPath.substring(UTF8FileNameAndPath.lastIndexOf( "/" ) + 1 ).substring(UTF8FileNameAndPath.lastIndexOf(File.separator) + 1 ); // 브라우저가 IE인지 확인할 플래그. boolean MSIE = request.getHeader( "user-agent" ).indexOf( "MSIE" ) != - 1 ; // 파일 다운로드 시 받을 때 저장될 파일명 String fileNameToSave = "" ; // IE,FF 각각 다르게 파일이름을 적용해서 구분해주어야 한다. if (MSIE){ // 브라우저가 IE일 경우 저장될 파일 이름 // 공백이 '+'로 인코딩된것을 다시 공백으로 바꿔준다. fileNameToSave = URLEncoder.encode(UTF8FileName, "UTF8" ).replaceAll( "\\+" , " " ); } else { // 브라우저가 IE가 아닐 경우 저장될 파일 이름 fileNameToSave = new String(UTF8FileName.getBytes( "UTF-8" ), "8859_1" ); } // 다운로드 알림창이 뜨도록 하기 위해서 컨텐트 타입을 8비트 바이너리로 설정한다. response.setContentType( "application/octet-stream" ); // 저장될 파일 이름을 설정한다. response.setHeader( "Content-Disposition" , "attachment; filename=\"" + fileNameToSave + "\";" ); // 파일패스 및 파일명을 지정한다. // String filePathAndName = pageContext.getServletContext().getRealPath("/") + UTF8FileNameAndPath; String filePathAndName = realPath + UTF8FileNameAndPath; File file = new File(filePathAndName); // 버퍼 크기 설정 byte bytestream[] = new byte [ 2048000 ]; // response out에 파일 내용을 출력한다. if (file.isFile() && file.length() > 0 ){ FileInputStream fis = new FileInputStream(file); BufferedInputStream bis = new BufferedInputStream(fis); BufferedOutputStream bos = new BufferedOutputStream(response.getOutputStream()); int read = 0 ; while ((read = bis.read(bytestream)) != - 1 ){ bos.write(bytestream , 0 , read); } bos.close(); bis.close(); } } |
이 코드는 사실 내가 한 것이 아니라 이미 하고 있는 프로젝트에서 누군가 해놓은 것이다.
나름 분석하고 공부해서 블로그에 정리.
'공장 (factory) > - Programming..' 카테고리의 다른 글
[JSP] jsp 페이지를 엑셀|워드|한글로 다운로드/실행. (11) | 2013.09.25 |
---|---|
[JSP] naver SmartEditor2 이미지 첨부 기능 (수정 보완) (83) | 2013.09.24 |
[JSP] MultipartRequest를 이용한 파일 업로드 (11) | 2013.09.17 |
[Java] 자바로 외부파일 실행. (5) | 2013.09.10 |
[JSP] 전체 방문자 수/오늘 방문자 수 count (2) | 2013.08.26 |