일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 세나
- VBA
- WiFi
- gson
- 붕괴3
- 다윈스트리밍서버
- Sculpt Erogonomic Desktop
- JEUS6.0
- 하스스톤
- 세븐나이츠
- 클래시 로얄
- Clash Royale
- 다윈 스트리밍 서버
- 윈도우 10
- 간접표현식
- 초대장
- JEUS
- IT 인코딩 encoding
- Windows 10
- 간접 표현식
- bluestack
- jQuery
- IT
- 모바일게임
- Http Live Streaming Server
- 윈도우10
- WebtoB
- ubuntu
- 처비
- HTML
Archives
- Today
- Total
공책
자바 파일 다운로드 한글 깨짐 처리시 본문
public void fileUpdate(HttpServletRequest request, HttpServletResponse response){ //파일명 String fileName = FileVO.Update; File file = new File(FileVO.FILE_PATH + fileName); FileInputStream fileInputStream=null; ServletOutputStream servletOutputStream=null; try { String downName = null; String browser = request.getHeader("User-Agent"); //파일 인코딩 if(browser.contains("MSIE") || browser.contains("Trident") || browser.contains("Chrome")){ downName = URLEncoder.encode(fileName,"UTF-8").replaceAll("\\+", "%20"); } else { downName = new String(fileName.getBytes("UTF-8"), "ISO-8859-1"); } response.setHeader("Content-Disposition","attachment;filename=\"" + downName+"\""); response.setContentType("application/octer-stream"); response.setHeader("Content-Transfer-Encoding", "binary;"); fileInputStream = new FileInputStream(file); servletOutputStream = response.getOutputStream(); byte b [] = new byte[1024]; int data = 0; while((data=(fileInputStream.read(b, 0, b.length))) != -1) { servletOutputStream.write(b, 0, data); } servletOutputStream.flush(); } catch (Exception e) { e.printStackTrace(); } finally{ if(servletOutputStream!=null){ try { servletOutputStream.close(); } catch (IOException e) { e.printStackTrace(); } } if (fileInputStream!=null){ try { fileInputStream.close(); } catch (IOException e) { e.printStackTrace(); } } } }
'웹 개발 > Java' 카테고리의 다른 글
Json 파싱할때 Gson에서 fromJson으로 변경 할때 한 필드에 여러 값이 매핑 되야 할 경우 (0) | 2017.03.08 |
---|---|
private 변수에 데이터 넣기 (0) | 2013.08.30 |
메소드 (0) | 2013.08.30 |
입력받은 문자열중 특정 문자열이 몇개 인지 찾는 로직 (0) | 2013.08.29 |
String의 특징 (0) | 2013.08.29 |
Comments