| Author |
How to Edit an Excel File with Java
|
Dave Elwood
Ranch Hand
Joined: Dec 27, 2002
Posts: 83
|
|
I have tried this library jxl.etc and found that it can *create* an excel file but
if you have an excel file file which already exists and want to modify it then you are out of luck.
Seems that you have Workbook objects and WritableWorkbook objects.
This last line is what doesn't work - sheet.change_the_value_in_a_Cell(strNewValue, strCellPosition);
If I work with Workbook, I can only read it as in the code above.
If I work with WritableWorkbook I can write something, but I have to create the workbook anew each time.
Aside from POI from apache is there any other way to modify an already existing Excel file??
|
 |
 |
|
|
subject: How to Edit an Excel File with Java
|
|
|