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は、最大65536行のみをサポートするバージョンのExcel(Excel 2003)を対象としています。

代わりに、より寛大な行制限がある新しいバージョンのExcelをサポートする新しいXSSFAPIを使用してみることができます。

2つの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++;
        }       

推測しているだけですが、インデックス++がWHILEにあるという事実により、レコードセットのすべてのエントリに対して毎回新しい行が作成されるのではないでしょうか。

于 2012-05-25T11:34:17.670 に答える
0

Excel(おそらく古いバージョンのみ)は65535行しか許可しません。

これがExcel2003の制限へのリンクです。これは実際には65535行です。2010年には1,048,576に増加しました。

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

int変数を整数に変更する必要があります。プリミティブからの制限があり-3276732767

于 2016-12-08T09:41:29.453 に答える