vote up 0 vote down star

Is there a way to set a limit on the size of a JasperReport? We just looked at a WebSphere 6.1 Heapdump and someone tried to create a report and it was 1.5GB of memory in the heap. And it brought our Websphere server to its knees. Thanks, T

flag

3 Answers

vote up 1 vote down

I'm not familiar with JasperReports, but you could wrap your I/O streams to ensure that the amount of data read/written does not exceed a defined limit.

OutputStream example:

public class LimitedSizeOutputStream extends OutputStream {

    private final OutputStream delegate;
    private final long limit;
    private long written = 0L;

    /**
     * Creates a stream wrapper that will throw an IOException if the write
     * limit is exceeded.
     * 
     * @param delegate
     *            the underlying stream
     * @param limit
     *            the maximum number of bytes this stream will accept
     */
    public LimitedSizeOutputStream(OutputStream delegate, long limit) {
    	this.delegate = delegate;
    	this.limit = limit;
    }

    private void checkLimit(long byteCount) throws IOException {
    	if (byteCount + written > limit) {
    		throw new IOException("Exceeded stream size limit");
    	}
    	written += byteCount;
    }

    @Override
    public void write(int b) throws IOException {
    	checkLimit(1);
    	delegate.write(b);
    }

    @Override
    public void write(byte[] b) throws IOException {
    	checkLimit(b.length);
    	delegate.write(b);
    }

    @Override
    public void write(byte[] b, int off, int len) throws IOException {
    	checkLimit(len);
    	delegate.write(b, off, len);
    }

    @Override
    public void close() throws IOException {
    	delegate.close();
    }

}

It is just as easy to wrap an InputStream.

link|flag
vote up 0 vote down

Thanks that seems to work great.
T

link|flag
vote up 0 vote down

Have you tried limiting the rows in the recordset returned from the database?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.