作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想根据使用 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/
我是一名优秀的程序员,十分优秀!