如何使用 JRBeanCollectionDataSource 从 JavaBean 中的 java.util.List 访问数据
本指南介绍如何显示存储在 JavaBean 中的数据使用 JRBeanCollectionDataSource 列出 JavaBean 的属性
问题:
考虑一个 JavaBean,其属性包含 java.util.List 值。我们如何在报告的详细信息区域中提取并显示此列表的数据?
解决方案:
要实现这一点,我们可以利用两个关键技术:
1。使用 _THIS 表达式:
在字段表达式中,利用 _THIS 表达式访问 JavaBean 的当前实例。这允许您从 bean 中提取 java.util.List 属性。
2.详细信息区域中的列表组件:
在详细信息区域中使用列表组件。将其 DataSourceExpression 绑定到新的 JRBeanCollectionDataSource,该新的 JRBeanCollectionDataSource 包装使用 _THIS 表达式获取的 java.util.List。然后,在列表的内容中,定义一个 TextField 以显示列表中的各个值。
示例代码:
JavaBean:
public class BeanWithList { private List<String> cities; private Integer id; // public getters for bean properties }
JRXML文件:
<field name="id" class="java.lang.Integer"/> <field name="cities" class="java.util.Collection"/> <detail> <band height="20"> <textField> <reportElement x="0" y="0" width="100" height="20"/> <textFieldExpression><![CDATA[$F{id}]]></textFieldExpression> </textField> <componentElement> <reportElement x="100" y="0" width="400" height="20"/> <jr:list> <datasetRun subDataset="dataset1"> <dataSourceExpression><![CDATA[new net.sf.jasperreports.engine.data.JRBeanCollectionDataSource($F{cities})]]></dataSourceExpression> </datasetRun> <jr:listContents height="20" width="400"> <textField> <reportElement x="0" y="0" width="100" height="20"/> <textFieldExpression><![CDATA[$F{city}]]></textFieldExpression> </textField> </jr:listContents> </jr:list> </componentElement> </band> </detail>
结果:
报告将显示 JavaBean 的 ID 以及存储在其城市属性中的城市列表。
以上是如何在 JasperReports 报表中显示 JavaBean 的列表属性?的详细内容。更多信息请关注PHP中文网其他相关文章!