28

我正在从文本文件中读取整数,将它们作为查询的输入并获取查询输出并写入 xls 文件。

ResultSet rs;
Connection con = null;
PreparedStatement ps = null;
int person_org_id, external_person_org_id;
File f = null;
Scanner scan = null;

try {
    System.out.println("----------checkpoint-----------");
    Class.forName("oracle.jdbc.driver.OracleDriver");
    System.out.println("----------checkpoint 1-----------");
    con = DriverManager.getConnection("jdbc:oracle:thin:@ksdjf.kjdlk.jkd.com:2222:edb", "aaaaa", "aaaa");
    System.out.println("----------checkpoint 2 ----------");
    if (con == null) {
        System.out.println("unable to connect to database");
    }
    System.out.println("----------checkpoint 3::connected to database---------");
    StringBuffer sql = new StringBuffer();
    sql.append("select abd from edb.abd where customer_id=510 and person_org_id =? ");
    ps = con.prepareStatement(sql.toString());

    HSSFWorkbook wb = new HSSFWorkbook();
    HSSFSheet sheet = wb.createSheet("Excel Sheet");
    HSSFRow rowhead = sheet.createRow(0);
    rowhead.createCell(0).setCellValue("ABC");
    rowhead.createCell(1).setCellValue("DEF");

    f = new File("/tmp/contacts.txt");
    scan = new Scanner(f);
    int index=1;

    while (scan.hasNextInt()) {

        person_org_id = scan.nextInt();

        ps.setInt(1,person_org_id);
        rs= ps.executeQuery();

        while (rs.next()) {                 

            external_person_org_id = rs.getInt(1);

            HSSFRow row = sheet.createRow(index);
            row.createCell(0).setCellValue(person_org_id);
            row.createCell(1).setCellValue(external_person_org_id);
            index++;
        }           

    }   
    FileOutputStream fileOut = new FileOutputStream(new File("/tmp/External_contact_id.xls"));
    wb.write(fileOut);
    fileOut.close();
    System.out.println("--------checkpoint 4:: writing data to xls completed------------");
}
catch (Exception e) {
    System.out.println(e.getMessage());
}

我收到错误Invalid row number (65536) outside allowable range (0..65535)

我的contacts.txt文件有大约 36000 个号码。

4

4 回答 4

44

HSSF 以 Excel 版本 (Excel 2003) 为目标,该版本最多仅支持 65536 行。

您可以尝试改用较新的XSSF API,它支持更高版本的 Excel,这些版本具有更宽松的行限制。

有一个转换指南可以帮助您在两个 API 之间进行转换。

于 2012-05-25T11:31:21.507 回答
2

如果您在文本文件中只有 36000 项,则肯定有其他问题。

创建一个小样本,比如说 100 个条目,然后用它进行测试。

如果可以,请仔细查看生成的 Excel 文件。看起来好像以下代码是您的问题:

while(rs.next()){                   

        external_person_org_id = rs.getInt(1);

        HSSFRow row = sheet.createRow(index);
            row.createCell(0).setCellValue(person_org_id);
            row.createCell(1).setCellValue(external_person_org_id);
            index++;
        }       

我只是在猜测,但是 index++ 在 WHILE 中的事实不会导致它每次为记录集中的每个条目创建一个新行吗?

于 2012-05-25T11:34:17.670 回答
0

Excel(也许只有旧版本)只允许 65535 行。

这是 Excel 2003 限制的链接,实际上是 65535 行。它在 2010 年增加到1,048,576

于 2012-05-25T11:27:23.667 回答
0
int person_org_id, external_person_org_id;

-32767您需要将 int 变量更改为 Integer,原始变量有限制,不能超过32767

于 2016-12-08T09:41:29.453 回答