Jasper Reports

Jasper Reports: Invalid ClassDesc Exception on Tomcat Environment

I tried to deploy a tomcat project on linux operating system and i encountered a weird jasper reports exception. I have to admit that it took me longer to figure out what the problem is. I have wasted two working days to finish this issue. The module is suppose to print out invoices in PDF format but i got this exception instead. I have written the class that uses Jasper Reports version 3.7.0. Previously, im using version 3.6.1 and the necessary jar files are in my LIB folder and classpath....

Sample Code for Multiple Page Jasper Report

My objective was to create a 5-page invoice file in PDF format.  Each page has different layout so it’s not possible to write all of them in just one file.  What I did is I created 5 JRXML file with multiple sub-reports.  I Used iReport-3.7.0 to create the jrxml files and compile into .jasper files.  This way, I don’t have to recompile the jrxml files into jasper files. Another issue that was solved here was the page number issue.  You’ll notice that every jasper page will have its own page n...

How to create Multiple Page Report in Jasper reports

I don’t know his name but I would like to thank him for providing this simple guide for newbie like me.  Here’s how to create multiple pages in Jasper Reports: Hello! Very easy Each page in report is separated report for example i create 3 report with static text then i fill this report with data and receive 3 files with extention *.jrprint In end i gather this files in one pdf file for filling report with data String sourceFileName = "fi...