I'm using JasperReports API through PHP/Java Bridge. This means that the PHP side is on another machine than the Java side and the two side doesn't share the same filesystem.
To load a report, I must read the .jasper file in PHP and convert it to a java.io.InputStream
instance and load it with net.sf.jasperreports.engine.util.JRLoader::loadObject
static method.
So everything works fine until my report have subreports referencing a file that the Java side doesn't have access. So my solution was to visit all subreports (using net.sf.jasperreports.engine.util.JRElementsVisitor
class), evaluate subreport expression, load the report using the same method as the main report, but it in parameters of the main report.
And then, here is my problem, I don't know how to change the JRBaseSubreport expression to point to the newly added parameter.
So my question is, how to change JRBaseSubreport expression?
I am not sure if this is what you mean or not, but you can actually change the definition in your JRXML for the subreports from using a
String
to usingnet.sf.jasperreports.engine.JasperReport
For instance it will usually add the following parameter to your report when you add a subreport:
And for the subreport element itself it will add something like:
Instead you of passing int the
SUBREPORT_DIR
pass in the compiledJasperReport
Object. So change your parameter to:and then the subreport element too:
Then it is just a matter of knowing what subreports you need for particular report.
NOTE: This does have the unfortunate side effect of it not running in
iReport
, but I usually just swap the parameter from aJasperReport
toString
instance when testing iniReport
to get around it.