1:中文乱码处理
对于中文字体,选中控件-“属性”-font-name[宋体]-pdf font name[STSong-Light]-pdf encoding[UniGB-UCS2-H(Chines...)]
2:制作表格
Fields-自定义fields-ctrl选中多个控件[右键-size-Adapt to parent height]
同理,相同高度[size-same height]
表格边框样式[属性-style-table_TD]
3:统计某一列的总和(SUM)| 参考:http://jaspereport.group.iteye.com/group/wiki/3401-jaspereport-ireport
variables中新建‘FEE_SUM’拖到Summary区域,其中属性variable class:java.lang.long | reset type:report | increment type:report |
Initial value:new java.lang.Long(0) | variable expression:new java.lang.Long($V{FEE_SUM}.longValue()+$F{fee}.longValue())
其中参数fee类型为java.lang.long意味着javabean传参时实体类中定义:private long fee;
统计字段显示格式设置:选中控件-属性-Pattern:¤ #,##0.00
4:实现隔行变色
表格控件都要引用同一个样式如:‘style1’,选中style1右键添加Conditional style-在新的样式属性栏中找到:condition expression:
new Boolean($V{PAGE_COUNT}.intValue()%2==1) 同时选中Opaque然后设置背景颜色,即可。
ireport学习参考(如何制作子报表)
http://blog.csdn.net/xht555/article/details/49717653