Spring pdf视图
1.web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.4"
xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
<servlet>
<servlet-name>pdf</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>pdf</servlet-name>
<url-pattern>*.html</url-pattern>
</servlet-mapping>
</web-app>
2.pdf-servlet.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans>
<bean id="viewResolver"
class="org.springframework.web.servlet.view.BeanNameViewResolver" />
<bean id="customPdfView" class="org.springframework.zwm.CustomPdfView" />
<bean name="/pdf.html" class="org.springframework.zwm.PdfController" />
</beans>
3.PdfController
package org.springframework.zwm;
import java.util.HashMap;
import java.util.Map;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.springframework.web.servlet.ModelAndView;
import org.springframework.web.servlet.mvc.Controller;
public class PdfController implements Controller {
public ModelAndView handleRequest(HttpServletRequest req,
HttpServletResponse res) throws Exception {
Map model = new HashMap();
model.put("information", "Information");
//...model.put....
return new ModelAndView("customPdfView", model);
}
}
4.CustomPdfView.java
package org.springframework.zwm;
import com.lowagie.text.Chapter;
import com.lowagie.text.Document;
import com.lowagie.text.DocumentException;
import com.lowagie.text.Font;
import com.lowagie.text.FontFactory;
import com.lowagie.text.Paragraph;
import com.lowagie.text.Section;
import com.lowagie.text.pdf.PdfWriter;
import java.awt.Color;
import java.util.Map;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.springframework.web.servlet.view.document.AbstractPdfView;
/**
* @about org.springframework.zwm
* @author zwm
*
*/
public class CustomPdfView extends AbstractPdfView {
protected void buildPdfDocument(Map model, Document document,
PdfWriter writer, HttpServletRequest request,
HttpServletResponse response) throws Exception {
// 打开文档,以写入内容
document.open();
// 创建目录标识
Paragraph title1 = new Paragraph((String) model.get("information"),
FontFactory.getFont(FontFactory.defaultEncoding, 19, Font.BOLD,
Color.BLUE));
// 第一章
Chapter chapter1 = new Chapter(title1, 1);
// 将编号级别设为0,就不会在页面上显示章节编号
chapter1.setNumberDepth(0);
// 创建第一部分
Paragraph partOne = new Paragraph("PartⅠ Industry", FontFactory
.getFont(FontFactory.defaultEncoding, 16, Font.BOLD, Color.black));
// 创建第二部分
Paragraph partTwo = new Paragraph("PartⅡ 春天免费框架预览", FontFactory
.getFont(FontFactory.defaultEncoding, 16, Font.BOLD,
Color.BLACK));
// 创建第三部分
Paragraph partThree = new Paragraph("PartⅢ \"Spring\"", FontFactory
.getFont(FontFactory.defaultEncoding, 16, Font.BOLD,
Color.black));
partThree.setAlignment(2);
// 创建节
Paragraph partOneOne = new Paragraph("PartⅠ Industry About",
FontFactory.getFont(FontFactory.defaultEncoding, 16, Font.BOLD,
Color.black));
Section section1 = chapter1.addSection(partOne);
section1.addSection(partOneOne);
chapter1.addSection(partTwo).addSection(partTwo);
section1.addSection(partThree);
// ///////////////////////
// 第二章
Paragraph title2 = new Paragraph("Technology", FontFactory.getFont(
FontFactory.defaultEncoding, 19, Font.BOLD,
new Color(0, 0, 255)));
Chapter chapter2 = new Chapter(title2, 2);
chapter2.setNumberDepth(0);
Paragraph title2One = new Paragraph("China Telecom",
FontFactory.getFont(FontFactory.defaultEncoding, 19, Font.BOLD,
Color.BLUE));
chapter2.addSection(title2One);
//
try {
document.add(chapter1);
document.add(chapter2);
} catch (DocumentException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
分享到:
相关推荐
NULL 博文链接:https://greemranqq.iteye.com/blog/2029026
iTextPDF能够很好地与Servlets、Spring MVC等Web框架集成,通过HTTP响应直接将PDF发送到客户端浏览器。 iTextPDF有多个版本,每个版本可能包含性能优化、新特性或对旧API的改进。例如,早期版本可能不支持PDF/A标准...
这个例子展示了如何使用 Spring MVC 和相关的库(Apache POI 和 iText)来动态生成 Excel 和 PDF 文件,提供给用户下载。整个流程涉及到 Spring MVC 的配置、控制器的编写以及与第三方库的集成,实现了从数据到视图...
对于PDF和Excel格式的输出,Spring MVC可以通过Apache POI库来处理Excel,使用Flying Saucer或iText库来生成PDF。这些库能够将HTML内容转换为所需的格式,方便导出和下载。 总的来说,Spring MVC是Spring框架的重要...
1. **设置依赖**:在Spring Boot项目的`pom.xml`文件中,添加iTextPDF5的依赖。确保引入的版本与项目兼容。 2. **HTML模板**:创建一个HTML模板,包含你需要在PDF中展示的内容。可以使用CSS来控制样式,使得PDF看...
在实际项目中,开发者通常会结合MVC框架(如Spring MVC)或模板引擎(如FreeMarker)来动态生成PDF内容。iText的强大功能和灵活性使其成为企业级应用中生成PDF报告的理想选择。然而,理解并熟练使用iText的API需要...
- `com.lowagie.text-2.1.7.jar`: iText库,用于PDF生成和操作。 - `commons-digester-1.8.jar`: Apache Commons Digester库,用于XML解析和对象绑定。 - `jasper-defs.xml`, `jasper-views.xml`: 这些是...
3. **事件处理和模板**:通过PdfWriter监听器,可以处理PDF生成过程中的各种事件,如页眉页脚的自定义。此外,可以使用模板来快速生成重复的结构。 4. **表单处理**:IText支持创建交互式PDF表单,可以添加文本字段...
通过分析和学习这个例子,开发者可以快速掌握在JSP中利用iText生成PDF报表的方法,将其应用到自己的项目中,实现各种复杂的PDF生成需求。例如,结合Spring MVC或Struts框架,可以创建更强大的报表生成服务,提供更...
在实际应用中,iText通常与其他技术结合使用,如Spring MVC框架用于构建Web应用,或者搭配数据库进行数据驱动的PDF生成。开发者需要了解PDF规范,以及Java编程基础,才能更好地利用iText。 这个中文帮助文档可能...
总结来说,这篇博文涵盖了使用SpringMVC结合Apache POI和iText库来生成Excel和PDF的关键技术。开发者需要理解这两个库的基本API,学习如何在Java中创建和格式化表格和文档,以及如何在SpringMVC环境中将这些文件作为...
PDF文档生成是IT行业中常见的需求,特别是在报告、合同和电子书籍等领域。...在实际项目中,还可以结合其他库或技术,如Spring MVC,实现动态生成PDF的功能。记住,持续学习和实践是掌握任何技术的关键。
在 Spring MVC 中,我们通常会借助第三方库如 Apache PDFBox、iText 或 Flying Saucer 来生成或处理 PDF 文件。 首先,要使用 PDF 功能,我们需要在项目中引入相应的依赖。例如,如果选择 iText 作为 PDF 处理库,...
在实际项目中,Itext.jar与其他技术如Servlet、JSP、Spring MVC等一起使用,构建出强大的PDF处理功能。例如,一个电子商务网站可能使用Itext.jar来生成订单确认页,用户可以在线预览后选择打印。 总的来说,Itext....
接下来,转向iTextPDF,这是一个用于生成和修改PDF文档的Java库。iTextPDF提供了丰富的API来创建、编辑和操作PDF文档: 1. **创建PDF文档**:使用Document对象,可以创建一个新的PDF文档。通过定义页面尺寸、边距等...
easypoi教程总结为我们提供了关于easypoi的详细使用教程,涵盖了Excel、Word、HTML、PDF等多种文档的导出和导入操作,以及与Spring MVC框架的集成。通过学习本教程,我们可以快速掌握easypoi的使用,并应用于实际...
1. **iText库**:Java中最常用的PDF生成库之一是iText。它允许开发者通过简单的API来创建、修改和操作PDF文档。iText提供了丰富的功能,包括文本、图像、表格、链接、注释等的插入,以及数字签名和安全功能。 2. **...
综合以上分析,这个压缩包包含的库展示了Spring 2.5 Web应用的典型组件和依赖,涵盖了MVC框架、文件处理、报表生成、HTTP通信、portlet支持以及PDF生成等多个方面,是一个完整的Web应用开发基础。开发者可以基于这些...
在服务器端,可以使用如Spring MVC的Controller来处理请求,返回一个包含Base64编码PDF内容的HTML页面。浏览器接收到这个页面后,解析HTML并显示Base64解码后的PDF。 5. **安全性考虑**:尽管通过Java服务器端处理...