티스토리 뷰
반응형
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 | @RequestMapping("/board/filedownLoad.do") public void fileDownLoad(String oName, String rName,HttpServletRequest request,HttpServletResponse response) { BufferedInputStream bis=null; ServletOutputStream sos=null; String dir=request.getSession().getServletContext().getRealPath("/resources/upload/board"); File savedFile=new File(dir+"/"+rName); try { FileInputStream fis=new FileInputStream(savedFile); bis=new BufferedInputStream(fis); sos=response.getOutputStream(); String resFilename=""; boolean isMSIE=request.getHeader("user-agent").indexOf("MSIE")!=-1 ||request.getHeader("user-agent").indexOf("Trident")!=-1; if(isMSIE) { resFilename=URLEncoder.encode(oName, "UTF-8"); resFilename=resFilename.replaceAll("\\+", "%20"); } else { resFilename=new String(oName.getBytes("UTF-8"),"ISO-8859-1"); } response.setContentType("application/octet-stream;charset=utf-8"); response.addHeader("Content-Disposition", "attachment;filename=\""+resFilename+"\""); //파일길이 설정 response.setContentLength((int)savedFile.length()); int read=0; //파일 전송 while((read=bis.read())!=-1) { sos.write(read); } //예외처리 } catch (IOException e) { e.printStackTrace(); } finally { try { sos.close(); bis.close(); } catch(IOException e) { e.printStackTrace(); } } } | cs |
파일의 ReName을 매개변수로 받아서 서버에 저장된 파일을 전송하는 로직이다.
인코딩 설정 해주고 보내는건데 그 설정이 좀 길어서 그렇지 위와 같은 형식으로 진행하면 저장된 파일을 받운 받는데 문제가 없다.
반응형
'Back-end > Spring' 카테고리의 다른 글
Spring job Scheduler task (잡 스케쥴러, 태스크) (0) | 2019.03.13 |
---|---|
AJAX 사용 시 데이터가 깨지는거 잡아주는 거 (0) | 2019.03.07 |
Spring WEB Socket (2) | 2019.02.24 |
Spring 파일업로드 하기 (0) | 2019.02.23 |
Spring MVC2 패턴으로 페이징 구성하기 (0) | 2019.02.23 |
댓글