繁体   English   中英

使用iText和Java的PDF Generator

[英]PDF Generator using iText and java

我需要使用iText生成一个PDF,也要使用ajax。 我给了一个按钮,单击时,我必须弹出一个保存pdf文件的弹出窗口,就像通常在许多可下载文件中一样。 我在代码中找不到任何错误,请仔细阅读代码并为我提供帮助。 我必须打印一个简单的表,其中包含行和列,而我却不能。

Ajax编码:

function getFocusedPDF(){
    alert("Inside create PDF ajax");
    $.ajax({
        url : '/PreTestWeb/getFocusedPDF',
        type : 'get',
        dataType : 'json',
        contentType : 'application/json',

        success : function(map) {
            console.log(map);
        },

        error : function(map) {
            alert(map);
            alert("error occured!!!");
        },

    });


}

家庭控制器:

@RequestMapping(value = "/getFocusedPDF", method = RequestMethod.GET)
public void getRecentFocusGrpData(HttpServletRequest req, HttpServletResponse res) throws IOException, DocumentException {
    String contType="application/pdf";
    res.setContentType(contType);
    Gson json = new Gson();
    System.out.println("Inside home ctrlr");
    PdfGenerator pdf=new PdfGenerator();
    System.out.println("==== Before ===");

    byte[] b=pdf.createFirstTable();

    System.out.println("==== After ===");

    res.setHeader("Content-Disposition",
            "attachment; filename=pdf.pdf");
    res.setContentLength(b.length);
    res.getOutputStream().write(b);
    res.getOutputStream().flush();
    res.getOutputStream().close();
     System.out.println("Last line in home ctrlr pdf generation");
}

createFirstTable :(方法)

public static byte[] createFirstTable() throws DocumentException, FileNotFoundException {
    System.out.println("=========Inside pdf generator ==========");
    // a table with three columns
    ByteArrayOutputStream outputStream = new ByteArrayOutputStream(1024);       
    Document document=new Document();
    PdfWriter writer = PdfWriter.getInstance(document, outputStream);
    writer.setCloseStream(false);       
    document.open();
    PdfPTable table = new PdfPTable(2);// new PdfTable(periodList.size() + 1);
    // the cell object
    PdfPCell cell  = new PdfPCell(new Paragraph ("Merry Moore"));
    cell.setColspan(2);
    table.addCell(cell);
    System.out.println("Added new paragraph");
    // now we add a cell with rowspan 2
    cell = new PdfPCell(new Phrase("Cell with rowspan 2"));
    cell.setColspan(2);
    table.addCell(cell);
    System.out.println("Added new cell");
    // we add the four remaining cells with addCell()
    table.addCell("row 1; cell 1");
    table.addCell("row 1; cell 2");
    table.addCell("row 2; cell 1");
    table.addCell("row 2; cell 2");
    document.add(table);
    System.out.println("Added table to document");
    document.close();
    return outputStream.toByteArray();
}

我认为您仅通过Ajax调用就可以做到这一点。 Ajax只能接收文本形式的响应。

如果要提示下载,我的方法是填写一个可能隐藏的表格,然后通过ajax提交:

<form id="form" action="/downloadPDF.do" method="POST">
    <fieldset>
        <label for="something">Something :</label> 
        <input type="text" name="something" id="something"/> 
    </fieldset>

$( "#button" ).click(function(e) {
     e.preventDefault();
     $('#form').submit();
});

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM