I have a jsp page with a button, that link on a servlet and this create a pdf file an stream that as respons.
protected void doGet(HttpServletRequest request,
    HttpServletResponse response) throws ServletException, IOException {
    path = request.getServletContext().getRealPath("/");
    String pdfFileName = "foo.pdf";
    String contextPath = getServletContext().getRealPath(File.separator);
    File pdfFile = new File(path + pdfFileName);
    response.setContentType("application/pdf");
    response.addHeader("Content-Disposition", "attachment; filename=" + pdfFileName);
    response.setContentLength((int) pdfFile.length());
    FileInputStream fileInputStream = new FileInputStream(pdfFile);
    OutputStream responseOutputStream = response.getOutputStream();
    int bytes;
    while ((bytes = fileInputStream.read()) != -1) {
        responseOutputStream.write(bytes);
    }
}
the jquery is
$(document).ready(function() {
    $(".getpdfbutton").click(function(){
        var currentRow=$(this).closest("tr");
        var col1=currentRow.find("td:eq(0)").html();
        var data3=col1;  
        alert(data3);   
        $.get("PDFerzeugen",{Spass:data3}, function(data) {
            /* window.location = data; */
            alert(data);
        }); 
    });
I get the data respons as base64 , how can i download it as pdf file ?
 
    