pdf数据填充,JaspersoftStudio,JasperReport

                                      pdf数据填充

填充动态数据到PDF报表中

/**
*填充数据构造JasperPrint
*is: 文件输入流
*parameters:参数
*dataSource:数据源
*/
public static JasperPrint fillReport(InputStream is, Map<String, Object> parameters, JRDataSource dataSource) throws JRException {

通过这段填充数据的源代码得知,JasperReport对报表模板中的数据填充有很多中方式,最典型的有以下两种:

Parameters(参数)填充DataSource(数据源)填充

参数Map填充数据

Parameters通常是用来在打印的时候从程序里传值到报表里。也就是说parameters通常的是起参数传递的作用。他们可以被用在一些特定的场合(比如应用中SQL 查询的条件),如report中任何一个需要从外部传入的变量等(如一个
Image对象所包括的char或报表title的字符串)。parameters也需要在创建的时候定义它的数据类型。parameters
的数据类型是标准的java的Object。

模板制作

(1) 创建新模板,删除不需要的Band

2)创建Parameter

outline面板中找到Parameters,右键 -> Create Parameter,新建一个Parameter(生成一个Paramerter1)

右键  Paramete1  ->  Show  Properties.   设置NametitleClassjava.lang.String.这里要注意名字要认真取不能重复,因为传入的参数的key就是这个参数名,以此来进行一一对应

3)模板参数设置

将设置好的参数直接拖入表格中对应的位置,并设置好大小与对齐方式。

PDF输出

@GetMapping("/testJasper02")
public void createPdf(HttpServletRequest request, HttpServletResponse response) throws IOException {
//1.引入jasper文件
Resource resource = new ClassPathResource("templates/parametersTest.jasper");
FileInputStream fis = new FileInputStream(resource.getFile());
//2.创建JasperPrint,向jasper文件中填充数据

ServletOutputStream os = response.getOutputStream(); try {
/**
* parameters集合中传递的key需要和设计模板中使用的name一致
*/
HashMap parameters = new HashMap();
parameters.put("title","用户详情"); parameters.put("username","李四");
parameters.put("companyName","传智播客");
parameters.put("mobile","120");
parameters.put("departmentName","讲师");
JasperPrint print = JasperFillManager.fillReport(fis, parameters,new JREmptyDataSource());
//3.将JasperPrint已PDF的形式输出JasperExportManager.exportReportToPdfStream(print,os); response.setContentType("application/pdf");

} catch (JRException e) { e.printStackTrace();
}finally {
os.flush();
}
}

数据源填充数据

JDBC数据源

配置数据连接

使用JDBC数据源填充数据:使用Jaspersoft Studio 先要配置一个数据库连接

填写数据源的类型,选择“Database JDBC Connection”

配置数据库信息 

这一步,需要:

1给创建的这个数据连接起个名字;

2根据数据库选择驱动类型; Jaspersoft Studio 已经内置了很多常用数据库的驱动,使用的时候直接选就可以了。当然,如果这还满足不了你的话,你还可以添加你指  定的 JDBC 驱动 jar 包。

模板制作

1)制作空白模板

创建空白模板,并将不需要的Band

2)将数据库用户字段配置到模块中

为了方便的进行模板制作,可以将需要数据库表中的字段添加到Studio中。在outline中右键模板,选择dataset and query

用户可以在 SQL 查询语句输入窗口中,输入需要查询数据的查询语句,点击右上角的“Read Fields”按钮,界面下方的字段列表中,就会显示此查询语句中所涵盖的所有字段的列表。在后面的报表设计中,我们就可以直接使用这  些字段了。

“Fields”列表中,只保留报表中使用的字段,其他用不到的字段最好用“Delete”删掉,防止由于数据表变化,导致   报表模板中的字段设置与数据表对应不上,导致报表报错。输入完毕后,点击“OK”按钮,系统即会把查询语句保存  在报表模板中。

3)填充Filed

id,mobileusername等拖入到 Detail Band中设计模板如下:

PDF输出

//测试JDBC连接数据源
@GetMapping("/testJasper03")
public void createPdf(HttpServletRequest request, HttpServletResponse response) throws Exception {
//1.引入jasper文件
Resource resource = new ClassPathResource("templates/testConn.jasper");
FileInputStream fis = new FileInputStream(resource.getFile());
//2.创建JasperPrint,向jasper文件中填充数据

ServletOutputStream os = response.getOutputStream(); try {
/**
*1.jasper文件流
*2.参数列表
*3.数据库连接
*/
HashMap parameters = new HashMap();
JasperPrint print = JasperFillManager.fillReport(fis, parameters,getConnection());
//3.将JasperPrint已PDF的形式输出JasperExportManager.exportReportToPdfStream(print,os); response.setContentType("application/pdf");

} catch (JRException e) { e.printStackTrace();
}finally {
os.flush();
}
}

//创建数据库Connection
public Connection getConnection() throws Exception { String url = "jdbc:mysql://localhost/ihrm"; Class.forName("com.mysql.jdbc.Driver");
Connection conn = DriverManager.getConnection(url, "root", "111111"); return conn;
}

创建Filed

1)创建Filed

2)构造模板

1)配置实体类

package cn.itcast.bean;

public class User { private String id;
private String username; private String mobile; private String companyName; private String departmentName;

public User(String id, String username, String mobile, String companyName, String departmentName) {
this.id = id; this.username = username; this.mobile = mobile;
this.companyName = companyName; this.departmentName = departmentName;
}

public String getId() { return id;
}

public void setId(String id) { this.id = id;
}

public String getUsername() { return username;
}
public void setUsername(String username) { this.username = username;
}


public String getMobile() { return mobile;
}


public void setMobile(String mobile) { this.mobile = mobile;
}


public String getCompanyName() { return companyName;
}


public void setCompanyName(String companyName) { this.companyName = companyName;
}


public String getDepartmentName() { return departmentName;
}


public void setDepartmentName(String departmentName) { this.departmentName = departmentName;
}
}

2)使用javaBean数据源

//测试javaBean数据源
@GetMapping("/testJasper04")
public void createPdf(HttpServletRequest request, HttpServletResponse response) throws Exception {
//1.引入jasper文件
Resource resource = new ClassPathResource("templates/testJavaBean.jasper");
FileInputStream fis = new FileInputStream(resource.getFile());
//2.创建JasperPrint,向jasper文件中填充数据

ServletOutputStream os = response.getOutputStream(); try {
HashMap parameters = new HashMap();
//构造javaBean数据源JRBeanCollectionDataSource ds = new
JRBeanCollectionDataSource(getUserList());
/**
*1.jasper文件流
*2.参数列表
*3.JRBeanCollectionDataSource
*/
JasperPrint print = JasperFillManager.fillReport(fis, parameters,ds);
//3.将JasperPrint已PDF的形式输出JasperExportManager.exportReportToPdfStream(print,os); response.setContentType("application/pdf");

} catch (JRException e) { e.printStackTrace();
}finally {
os.flush();
}
}

//创建数据库Connection
public List<User> getUserList() throws Exception { List<User> list = new ArrayList<>();
for (int i=1;i<=5;i++) {
User user = new User(i+"", "testName"+i, "10"+i, "企业"+i, "部门"+i); list.add(user);
}
return list;
}

​​​​​​​分组报表

概述

有两种情况会使用分组报表: 美观和好看的显示。

当数据分为两层表时,经常需要批量打印子表的数据。打印时,常常需要按照父表的外键或关联值进行自动

分组,即每一条父表记录所属的子表记录打印到一组报表中,每组报表都单独计数及计算页数。

在应用中,可以通过选择需要打印的父表记录,将父表记录的 ID 传入,由报表自动进行分组。

设置分组属性

1)新建模板

使用用户列表模板完成分组案例

2)新建报表群组

选中报表名称点击右键,选择菜单中的“Create Group”

需要设置分组的名称、分组字段。也可以设置按照指定的函数、方法处理后进行分组

按照字段“companyName”进行分组。设置完毕,点击“Next”。系统显示细节设置界面。此处可以设置是否加

“group header”“group footer”区。建议保持默认选中,加入这两个区域,这样可以控制在每组报表的结尾, 打印相应的信息,例如统计信息等。

 

3)放置报表数据

companyName拖入 Group Header中 ,会跳出 TextField Wizard框,选中 NoCalculation Function

 

双击 $F{deptId} 会弹出Expression editor

​​​​​​​添加分组Band

将需要作为表头打印的内容拖入 CompanyGroup Header1 栏,将字段拖入 detail 栏,将每个分组结尾需要打印的内容放入 Companygroup footer 栏,将页脚需要打印的内容放入 Page Footer栏,如下图。

 

PDF输出

//测试分组
@GetMapping("/testJasper05")
public void createPdf(HttpServletRequest request, HttpServletResponse response) throws Exception {
//1.引入jasper文件
Resource resource = new ClassPathResource("templates/testGroup.jasper");
FileInputStream fis = new FileInputStream(resource.getFile());
//2.创建JasperPrint,向jasper文件中填充数据

ServletOutputStream os = response.getOutputStream(); try {
HashMap parameters = new HashMap();
//构造javaBean数据源JRBeanCollectionDataSource ds = new
JRBeanCollectionDataSource(getUserList());
/**
*1.jasper文件流
*2.参数列表
*3.JRBeanCollectionDataSource
*/
JasperPrint print = JasperFillManager.fillReport(fis, parameters,ds);
//3.将JasperPrint已PDF的形式输出JasperExportManager.exportReportToPdfStream(print,os); response.setContentType("application/pdf");

} catch (JRException e) { e.printStackTrace();
}finally {
os.flush();
}
}

//创建数据库Connection
public List<User> getUserList() throws Exception {
List<User> list = new ArrayList<>();
for(int i=1;i<=3;i++) {
User user = new User("it00"+i, "itcast"+i, "1380000000"+i, "传智播客", "讲师");
list.add(user);
}

for(int i=1;i<=3;i++) {
User user = new User("hm00"+i, "itheima"+i, "1880000000"+i, "黑马程序员", "讲师");
list.add(user);
}

return list;
}

Chart图表

创建模板

1)创建模板,删除不需要的band,保留titlesummary

3)创建chart图标

第一步:palette面板找到chart图表,拖拽到band中第二步:选择需要的图表类型

第三步:设置图表参数

Key: 圆饼图的内容是什么,也就是下面的 FirstSecond…的内容Value:这个圆饼图的比例依据,根据 Value 属性来显示每个 Key 占的比例Label:显示标签

​​​​​​​PDF输出

实体类

public class UserCount { private String companyName; private Integer count;

public UserCount(String companyName, Integer count) { this.companyName = companyName;
this.count = count;
}

public String getCompanyName() { return companyName;
}

public void setCompanyName(String companyName) { this.companyName = companyName;
}

public Integer getCount() { return count;
}


public void setCount(Integer count) { this.count = count;
}
}

​​​​​​​PDF输出

//测试图表
@GetMapping("/testJasper06")
public void createPdf(HttpServletRequest request, HttpServletResponse response) throws Exception {
//1.引入jasper文件
Resource resource = new ClassPathResource("templates/testChart.jasper");
FileInputStream fis = new FileInputStream(resource.getFile());
//2.创建JasperPrint,向jasper文件中填充数据

ServletOutputStream os = response.getOutputStream(); try {
HashMap parameters = new HashMap();
//parameters.put("userCountList",getUserList());
//构造javaBean数据源JRBeanCollectionDataSource ds = new
JRBeanCollectionDataSource(getUserList());
/**
*1.jasper文件流
*2.参数列表
*3.JRBeanCollectionDataSource
*/
JasperPrint print = JasperFillManager.fillReport(fis, parameters,ds);
//3.将JasperPrint已PDF的形式输出JasperExportManager.exportReportToPdfStream(print,os); response.setContentType("application/pdf");


} catch (JRException e) { e.printStackTrace();
}finally {
os.flush();
}
}

//创建数据库Connection
public List<UserCount> getUserList() throws Exception {
List<UserCount> list = new ArrayList<>(); UserCount uc1 = new UserCount("传智播客",10); UserCount uc2 = new UserCount("黑马程序员",10); list.add(uc1);
list.add(uc2); return list;
}

父子报表

概述

复杂报表或数据内容较多的时候,可以使用子报表解决

制作父报表

首先制作父报表,就是调用子报表的一个基础报表。主报表的作用有如下两种: 父报表中需要显示数据,使用子报表弥补studio设计的不足

父报表不需要显示任何数据,只是作为子报表的载体。适用于复杂报表的设计

制作子报表

点击组件面板上的“Subreport”按钮,拖动到报表工作区上。

系统会自动弹出子报表选择窗口。可以选择创建一个新报表,还是使用一个已有的报表作为子报表。

选择“Create a new report”,可以立即制作新的子报表;如果选择“Select an existing report”,则可以调用已经有的报表作为子报表;如果选择“Just create the subreport element”,系统会生成一个子报表区,可以在之后挂接需要的子报表。

​​​​​​​参数传递

 

/测试父子模板
@GetMapping("/testJasper07")
public void createPdf(HttpServletRequest request, HttpServletResponse response) throws Exception {
//1.引入jasper文件
Resource resource = new ClassPathResource("templates/main.jasper");
FileInputStream fis = new FileInputStream(resource.getFile());
//2.创建JasperPrint,向jasper文件中填充数据

ServletOutputStream os = response.getOutputStream(); try {
HashMap parameters = new HashMap();
Resource subResource = new ClassPathResource("templates/sub-group.jasper"); parameters.put("subpath",subResource.getFile().getPath()); parameters.put("sublist",getUserList()); parameters.put("sublist",getUserList());
JRBeanCollectionDataSource ds = new JRBeanCollectionDataSource(getUserList());
JasperPrint print = JasperFillManager.fillReport(fis, parameters,new JREmptyDataSource());

//3.将JasperPrint已PDF的形式输出JasperExportManager.exportReportToPdfStream(print,os); response.setContentType("application/pdf");


} catch (JRException e) { e.printStackTrace();
}finally {
os.flush();
}
}

//创建数据库Connection
public List<User> getUserList() throws Exception { List<User> list = new ArrayList<>();
for(int i=1;i<=3;i++) {
User user = new User("it00"+i, "itcast"+i, "1380000000"+i, "传智播客", "讲

师");


list.add(user);
}





师");

for(int i=1;i<=3;i++) {
User user = new User("hm00"+i, "itheima"+i, "1880000000"+i, "黑马程序员", "讲

list.add(user);

}

return list;
}

用户档案下载

​​​​​​​搭建环境

(1) 配置坐标


<dependency>
<groupId>net.sf.jasperreports</groupId>
<artifactId>jasperreports</artifactId>
<version>6.5.0</version>
</dependency>
<dependency>
<groupId>org.olap4j</groupId>
<artifactId>olap4j</artifactId>
<version>1.2.0</version>
</dependency>
<dependency>
<groupId>com.lowagie</groupId>
<artifactId>itext</artifactId>
<version>2.1.7</version>
</dependency>

2)解决乱码问题

net.sf.jasperreports.extension.registry.factory.simple.font.families=net.sf.jasperrepor ts.engine.fonts.SimpleFontExtensionsRegistryFactory net.sf.jasperreports.extension.simple.font.families.lobstertwo=stsong/fonts.xml

 

实现用户档案下载

/**
* 打印员工pdf报表x
*/
@RequestMapping(value="/{id}/pdf",method = RequestMethod.GET) public void pdf(@PathVariable String id) throws IOException {
//1.引入jasper文件
Resource resource = new ClassPathResource("templates/profile.jasper"); FileInputStream fis = new FileInputStream(resource.getFile());

//2.构造数据
//a.用户详情数据
UserCompanyPersonal personal = userCompanyPersonalService.findById(id);
//b.用户岗位信息数据
UserCompanyJobs jobs = userCompanyJobsService.findById(id);
//c.用户头像	域 名 / id
String staffPhoto = "http://pkbivgfrm.bkt.clouddn.com/"+id;

System.out.println(staffPhoto);

//3.填充pdf模板数据,并输出pdf
Map params = new HashMap();


Map<String, Object> map1 = BeanMapUtils.beanToMap(personal); Map<String, Object> map2 = BeanMapUtils.beanToMap(jobs);

params.putAll(map1); params.putAll(map2); params.put("staffPhoto","staffPhoto");

ServletOutputStream os = response.getOutputStream(); try {
JasperPrint print = JasperFillManager.fillReport(fis, params,new JREmptyDataSource());
JasperExportManager.exportReportToPdfStream(print,os);
} catch (JRException e) { e.printStackTrace();
}finally {
os.flush();
}
}

 代码示例下载:     

链接:https://pan.baidu.com/s/1R234WamTLI_fAOHr_WlrFg 
提取码:nnyt 

 

  • 2
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

_无往而不胜_

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值