如何使用JRBeanCollectionDataSource 從JavaBean 中的java.util.List 存取資料
本指南介紹如何顯示儲存在JavaBean 中的資料使用JavaBean5 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中文網其他相關文章!