Jump to content
JasperReports Library 7.0 is now available ×

out of memory


2005 IR Help

Recommended Posts

By: C. Richard Jamieson - rykk

out of memory

2004-03-16 10:02

I am using 5.2

I have a very simple report that compiles with no errors and 1 warning.

 

Warning?:?Element?bottom?reaches?outside?band?area?:?y=0?height=1?band-height=0 Compilation running time : 1219

 

The report has no subreports - nothing fancy.

The report has only 7 fields that are from the database.

A simple select that returns 1 record.

 

select * from passportexport1

where Page_break = 'Page 1'

and Employee_ID = $P{EMPID}

order by Line_Sequence

 

This report had the same warning and worked fine until I changed the page size to 5" by 3" and

arranged the fields within the new size.

 

Now when I attempt to run the report from a java program

it dies with an out of memory error while the report is doing the fillReport.

 

try {

System.out.println("reportFile="+reportFile);

fs = (InputStream)(startup.class.getResourceAsStream(reportFile));

System.out.println("load report");

JasperReport template = JasperManager.loadReport(fs);

HashMap mapa = new HashMap();

System.out.println("fill report");

report = JasperManager.fillReport(template, controlHash, reportConnection);

}

catch (Exception jEX) {

System.out.println("Error");

}

 

Standard Output

*****

reportFile=sreports/stdpassport1.jasper

load report

fill report

java.lang.OutOfMemoryError

 

I will send the XML file if it will help.

I have been unable to resolve the problem.

 

EMail: jreports@wim.ca

Link to comment
Share on other sites

  • Replies 0
  • Created
  • Last Reply

Top Posters In This Topic

Popular Days

Top Posters In This Topic

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×
×
  • Create New...