jasper 报告中的集合
我有一个对象列表,我想将它们打印在 jasper pdf 输出中作为表格。这些对象有 3 个字符串实例。所以我想要这样的东西:
Obj1Str1 Obj1Str2 Obj1Str3
..
Obj3Str1 .......
就像一张桌子一样。
你能告诉我该怎么做吗(xml 文件和 java 代码)?
I have a list of objects and I want to print them in a jasper pdf output as a table. The objects have 3 String istances. So I want something like this:
Obj1Str1 Obj1Str2 Obj1Str3
..
Obj3Str1 .......
just like a table.
Can you show me what to do (xml file and java code) ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要使用
JRBeanCollectionDataSource
作为报告的数据源。You need to use a
JRBeanCollectionDataSource
as the data source for the report.