Appending data in an Excel file

后端 未结 3 1277
迷失自我
迷失自我 2020-12-06 23:29

I am trying to write a program that will append data to an Excel file in Java. I got up to the following code. But it rewrites the contents in the Excel file, not appending

3条回答
  •  臣服心动
    2020-12-06 23:51

    Instead of using createWorkbook use "getWorkbook(java.io.File file) " to get an existing Excel. Then use getSheet(int index) to retrieve the appropriate sheet.

    To the sheet you retrieved above use "addCell(WritableCell cell) " to append cells to the sheet.

    Workbook workbook = Workbook.getWorkbook(new File(""D:\\0077\\my2.xls""));
    WritableWorkbook copy = Workbook.createWorkbook(new File("output.xls"), workbook);
    WritableSheet sheet2 = copy.getSheet(1); 
    Label label = new Label(5,2,"ssssssssss"); 
    sheet2.addCell(label); 
    

    You will find a lot of examples here. http://www.andykhan.com/jexcelapi/tutorial.html

提交回复
热议问题