使用 Java 对象填充子报表值

发布于 2024-10-04 09:29:58 字数 322 浏览 3 评论 0原文

我有一个对象列表。下面是对象列表中的值的示例。

A X
A Y
A Z
B P 
B Q
B R

意味着值 X、Y、Z 位于 A 组下,P、Q、R 位于 B 组下。 通过 iReports,我可以列出对象中的值(如上所述)。

我想做的是我想在报告中以分组方式显示行,如下所示。

A
    X
    Y
    Z
B
    P
    Q
    R

我知道这可以在子报告中完成。但我不知道如何通过我当前拥有的对象列表来做到这一点。请提出任何想法。

谢谢。

I have a List of Object. Below is the example of values in the List of Objects.

A X
A Y
A Z
B P 
B Q
B R

Meaning the values X,Y,Z are under group A and P,Q,R are under the group B.
Thru iReports i am able to list the values in the object (as above).

What i am trying to do is i want to display rows in grouped fashion in the reports .like below.

A
    X
    Y
    Z
B
    P
    Q
    R

I know it can be done in subreports. But i don't know how to do it thru the list of object what i have currently. Please suggest any idea.

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

自此以后,行同陌路 2024-10-11 09:29:58

在子报表中,您可以添加一个条件,其中如果对象具有第一个值 X(作为参数传递给子报表的值),则它将被写入,否则将被忽略。

然后,在主报表中,您可以为每个组调用一次子报表,传递键值和完整的对象集合。

At your subreport you can add a condition, in which, if an object has a first value X (a value passed as a param to the subreport), it will be written, and otherwise ignored.

Then, at the main report you can invoke the subreport once for every group, passing the key value and the full collection of objects.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文