Appending data in an Excel file

后端 未结 3 1271
迷失自我
迷失自我 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条回答
  •  萌比男神i
    2020-12-06 23:39

    After opening the workbook from file, do like this:

    WritableWorkbook copy = Workbook.createWorkbook(
       new File(""D:\\0077\\my2_copy.xls""), 
       workbook
    );
    

    You will get a copy of the workbook opened. Do the changes you need in that copy and save it instead.

提交回复
热议问题