Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I print a list of strings contained within another list in iReport?

I am creating a simple reporting program using java and iReport (from jasper), which is supposed to create a report in pdf showing PCs with their IP address, their location, whether it's idle or not at the moment (handled by another system), and a list of projects it is currently attached to (managed elsewhere, too).

I'm using iReport for this matter, and have created a dummy collection generating class as follows:

public class PCReports {

    public static java.util.Collection PC_collection;
    public static java.util.Collection generateCollection() {

        PC_collection = new ArrayList<PCLineDTO>();
        PCLineDTO line = new PCLineDTO();
        line.setIP("192.168.1.1");
        line.setLab("location");
        line.setActive(true);
        line.addProjectName("project1");
        line.addProjectName("project2");
        line.addProjectName("project3");
        PC_collection.add(line);

        line = new PCLineDTO();
        line.setIp("192.168.1.2");
        line.setLab("location2");
        line.setActive(false);
        line.addProjectName("project1");
        line.addProjectName("project2");
        PC_collection.add(line);

        return PC_collection;
    }
}

The entity class in this case being:

public class PCLineDTO {
    private String ip;
    private String lab;
    private Boolean active;
    private ArrayList<String> projects;
}

After some searching around the Internet, I found a way to do something similar, using subreports.

The thing is, I don't know how to print a collection of strings passed as a dataSource to this subreport.

In the examples I found on the Internet, for each item in the master collection, the subreports were passed a collection of objects -with their own getter methods for each attribute- instead of a collection of strings as is the case here. In those cases, they accessed the values they needed to use via the iReport syntax, which I was not able to use, for example:

$F{project}

Since iReport looks for a getProject method contained within the objects it receives, but in this case it's a simple String object (without a getProject method, as it were).

like image 373
Kenji Kina Avatar asked Nov 20 '09 17:11

Kenji Kina


People also ask

What is $r in iReport?

$R{} is used for localization to replace value with those from the resource file. http://community.jaspersoft.com/questions/538008/rresource.


2 Answers

Use a subreport or a subdataset.

Pass the subreport a collection datasource

JRBeanCollectionDataSource($F{Projects})

Then in the new subreport create a new field called "_THIS" exactly, this means the bean in the collection passed is the same as the value i want

For more info, check the source code of the class here: JRAbstractBeanDataSource

Note: this is available in JasperReport 3.0.0 im not sure if it exists in previous builds. Hope this helps

Update: just checked the SVN, seems like this feature is implemented in JasperReports 2.0.0

like image 105
medopal Avatar answered Oct 14 '22 06:10

medopal


Interesting. I think you'd better use the List, and then define getName() on the Project class. Then in the subreport define a variable "name". It will work this way, and it will allow you to add easily additional information, like project duration, team-lead, etc.

like image 43
Bozho Avatar answered Oct 14 '22 06:10

Bozho