How to Edit/Modify an existing Excel file in Java with Jexcel API
问题 I want to edit an existing Excel file with Java, to add some more data to an existing template excel file. So i used Jexcel for this purpose. As suggested everywhere, I tried the following, Workbook existingWorkbook = Workbook.getWorkbook(new File("H://"+file_name)); WritableWorkbook copy = Workbook.createWorkbook(new File("H://"+file_name+"_temp1.xls")); But it shows an exception in the second line. jxl.common.AssertionFailed at jxl.common.Assert.verify(Assert.java:37) at jxl.read.biff