..
a 태그를 이용하여 pdf 파일 다운 시 "파일 다운로드창" 뜨도록 하려면
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.

<a href="http://도메인/download/file.pdf">다운로드</a>


로 파일 다운시 "파일 다운로드"창이 뜨지 않음. 

바로 pdf reader가 실행되어 pdf가 보여짐.



a 태그를 이용하여 pdf 파일 다운 시 "파일 다운로드창" 뜨도록 하려면 아래와 같이 작성


<a href="download.jsp?filename=파일명&filename_h=한글명">다운로드</a>


download.jsp 파일


  1. <%@ page language="java" contentType="text/html; charset=EUC-KR" pageEncoding="EUC-KR"%>
  2. <%@ page import="java.io.*"%>
  3.  
  4. <%
  5.     String filename = request.getParameter("filename") + ".pdf";
  6.     String filename_h = request.getParameter("filename_h") + ".pdf";
  7.     String file_location = "/app/tmax/jeus/webhome/context_name/download";
  8.  
  9.     File file = null;
  10.     BufferedInputStream fin = null;
  11.     BufferedOutputStream outs = null;
  12.  
  13.     try{
  14.        
  15.         file = new File(file_location, filename);
  16.         response.reset();
  17.  
  18.         response.setHeader("Content-Type","application/pdf");
  19.         response.setHeader("Content-Disposition","attachment;filename="+filename_h+";");
  20.  
  21.         if(file != null){
  22.             fin = new BufferedInputStream(new FileInputStream(file));
  23.             outs = new BufferedOutputStream(response.getOutputStream());
  24.  
  25.             int read = 0;
  26.  
  27.             while((read = fin.read()) != -1 ){
  28.                 outs.write(read);
  29.             }
  30.         }
  31.  
  32.     }catch(Exception e){
  33.         response.setContentType("text/html;charset=euc-kr");
  34.         out.println("<script type='text/javascript'>");
  35.         out.println("alert('파일 오픈 중 오류가 발생하였습니다.');");
  36.         out.println("</script>");
  37.     }finally{
  38.  
  39.         if(outs != null) fin.close();
  40.         if(fin != null) outs.close();
  41.  
  42.     }
  43.    
  44. %>


  Comments,     Trackbacks