0

如果我有数十万行到达结果集中,那么它会给出内存不足错误。

我使用以下代码生成了 XLS 报告:

我正在使用 IBM websphere Server V6.0。

public void generateExcel(Map parms) {

        Connection dbConnection = null;
        CallableStatement dbStatement = null;    
        PreparedStatement dbPreparedStatement = null;
        ResultSet rs = null;

        try {
                dbConnection = this.dbConnect();
                dbStatement = dbConnection.prepareCall("{ call generateReport()}");
                System.out.println("call riskControlSummaryReport("+startDate+","+endDate+")");
                rs = dbStatement.executeQuery();

                CachedRowSet crs = new CachedRowSet();
                crs.populate(rs);

                ws.setLocale(new Locale("en", "EN"));
                File xlsFile = new File("D:/report.xls");
                FileOutputStream fos = new FileOutputStream(xlsFile);
                ws.setGCDisabled(true);
                workbook = Workbook.createWorkbook(fos, ws);
                WritableSheet s1 = workbook.createSheet("riskControlSummary"+employeeId, 0);
                //Here write report in Excel File
                writeDetailReport(s1, crs);
                s1.setPageSetup(PageOrientation.LANDSCAPE, PaperSize.LETTER, 0.5, 0.25);
                SheetSettings sh = s1.getSettings();
                sh.setScaleFactor(69);

                workbook.write();
                workbook.close();
                fos.close();
        } catch (WriteException we) {
            we.printStackTrace();
        }catch (Exception e) {
            e.printStackTrace();
        }

    }
public int writeDetailReport(WritableSheet s1, CachedRowSet rs) throws WriteException, SQLException {

        Label line = null;
        Label line = null;
        int row = 0;

        String labelNames[] = {"Function","Category","RiskTitle","Level",
                "Controls"};

        String dbColumnNames[] = {"Function","Category","Title","Level",
                "Controls"};

        //set cell width
        setCellWidth(s1,0,4000);
        setCellWidth(s1,1,5000);
        setCellWidth(s1,2,4000);
        setCellWidth(s1,3,3000);
        setCellWidth(s1,4,6000);

        int labelLength = labelNames.length;
        int dbLength = dbColumnNames.length;

        //label 
        row++;

        for(int i=0;i<labelLength;i++){
            line = new Label(i, row, labelNames[i], getArial8ptBold());
            s1.addCell(line);
        }

        row++;

        //data list
        while (rs.next()) {
                for(int j=0;j<dbLength;j++)
                {
                            line = new Label(j, row, RiskUtility.replaceBlankIfNull(rs.getString(dbColumnNames[j])).trim(), cellFormat);
                            s1.addCell(line);
                }
                row++;
            }//end while
        }
        return row;
    }
4

2 回答 2

0
1. Why cant you get Records of 10k in a batch and write to the file.

2. java -Xms512m -Xmx512m 

填充 cachedRowset 后,ResultSet rs 不会立即关闭

CachedRowSet crs = new CachedRowSet(CachedRowSet.TYPE_FORWARD_ONLY);
crs.populate(rs);
rs.close();
于 2011-02-16T12:18:36.210 回答
0

通常的解决方案:添加-Xmx128m到你的java命令以增加堆空间。对于标准 Java 应用程序,它最初设置为 64 MByte。

当您使用应用程序服务器时 - AS 本身是使用-Xmx参数启动的。查看它的值并增加它以将更多的堆空间分配给整个服务器。(它将远远超过 128 MByte)

于 2011-02-16T12:10:04.760 回答