gpt4 book ai didi

java - 如何在 Struts 中为 Mysql 的搜索结果创建 pdf

转载 作者:行者123 更新时间:2023-12-01 05:58:45 25 4
gpt4 key购买 nike

我想根据使用 Struts 从 Mysql DB 传入的值创建一个 pdf 文件。有人可以帮助我指出任何工具或如何处理吗?

最佳答案

您可以使用iText - 用于创建 PDF 文档的成熟开源库。以下示例基于 Struts 1,但可能对您有所帮助:

public class PDF extends Action {
public ActionForward perform(ActionMapping mapping, ActionForm form,
HttpServletRequest request, HttpServletResponse response)
throws IOException, ServletException {

try {

Document document = new Document();
ByteArrayOutputStream baos = new ByteArrayOutputStream();
PdfWriter.getInstance(document, baos);
document.open();
document.add(new Paragraph("Hello World"));
//
// add your data here ...
//
document.close();

response.setContentType("application/pdf");
response.setContentLength(baos.size());
ServletOutputStream out = response.getOutputStream();
baos.writeTo(out);
out.flush();
} catch (Exception e2) {
System.out.println("Error in " + getClass().getName() + "\n" + e2);
}
return null;
}
}

关于java - 如何在 Struts 中为 Mysql 的搜索结果创建 pdf,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1938719/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com