You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I generate a big pdf (it's a report, about 150,000~200,000 row data)
Because I need to add statistics data, so I create Row & Cell by manual to custom my report
But I creating Row & Cell before drawtable, the ram direct up to ~3G from 400MB
then I call draw(), Java throws the OutOfMemoryError exception...
My JVM only setting 4G available memory..
Any one know how to improve this issue?
Thanks
btw. I am not english native speaker ;) Maybe some semantics wrong ...
The text was updated successfully, but these errors were encountered:
here is my create row and cell example code
`
Row row = baseTable.createRow(10.f);
Cell cell;
cell = row.createCell(contentColWidth.get("name1"), df.format(totalModel.getName1()), HorizontalAlignment.CENTER, VerticalAlignment.MIDDLE);
cell.setFont(font);
cell.setFontSize(fontSize);
When I generate a big pdf (it's a report, about 150,000~200,000 row data)
Because I need to add statistics data, so I create Row & Cell by manual to custom my report
But I creating Row & Cell before drawtable, the ram direct up to ~3G from 400MB
then I call draw(), Java throws the OutOfMemoryError exception...
My JVM only setting 4G available memory..
Any one know how to improve this issue?
Thanks
btw. I am not english native speaker ;) Maybe some semantics wrong ...
The text was updated successfully, but these errors were encountered: