0

我正在使用 JXL api。我想填写一个已经有内容的excel表格,比如:

123 321 12324   

123 321 231 

123 321 343 

123 321 454 

123 321 565

我试图在第五行之后写下一个值,但我不知道该怎么做。如果它是空的,我只知道如何创建和编写一个 Excel 表。我知道如何阅读它。我在想,首先我必须阅读它,而包含表值的数组将帮助我选择表的最后一个值,然后我会从那里开始写其他值。我有这些方法:

读书:

arquivo = new File("C:\\Users\\maniceto\\Desktop\\arq.xls");

        planilha = Workbook.getWorkbook(arquivo); 

        Sheet[] abas = planilha.getSheets(); 

        aba = planilha.getSheet(0);  

        matriz = new String[aba.getRows()][aba.getColumns()];

        Cell[] cel; 

        for (int i = 0; i < matriz.length; i++) {
            cel = aba.getRow(i);

            for (int j = 0; j < matriz[0].length; j++) {
                matriz[i][j] = cel[j].getContents(); 
            }
        }

        System.out.println("Lines " + matriz.length);
        System.out.println("Columns " + matriz[0].length);
        System.out.println("");

        for (int i = 0; i < matriz.length; i++) {
            for (int j = 0; j < matriz[0].length; j++) {
                System.out.print(matriz[i][j] + "\t");
            }
            System.out.println("");
        }

要编写一个空的 Excel 表:

WritableWorkbook workbookVazio = Workbook.createWorkbook(file);


            WritableSheet sheet1 = workbookVazio.createSheet("First Sheet", 0);
            TableModel model = table.getModel();

            for (int i = 0; i < model.getColumnCount(); i++) {
                Label column = new Label(i, 0, model.getColumnName(i));
                sheet1.addCell(column);
            }
            int j = 0;
            for (int i = 0; i < model.getRowCount(); i++) {
                for (j = 0; j < model.getColumnCount(); j++) {
                    Label row = new Label(j, i + 1,
                            model.getValueAt(i, j).toString());
                    sheet1.addCell(row);
                }
            }
            workbookVazio.write();
            workbookVazio.close();
4

2 回答 2

0

you could try something like

int lastRowNum = workbookVazio.getSheet("First Sheet").getLastRowNum();
int  nextFreeRow = lastRowNum+1;

or you can use Apache POI theres a good tutorial here.

于 2013-11-01T13:27:40.503 回答
0

正如 rgettman 在这个问题中所说,我还建议使用Apache POI来处理带有 JAVA 的 Excel 文件。

要使用 POI 附加值,您只需要获取当前行数:

int rows = sheet.getPhysicalNumberOfRows();

POI 有很好的文档记录,您可以在网上轻松找到几个代码示例。

于 2013-11-01T13:26:31.567 回答