I've made a file browser in java that opens and read already been made excel files. (using Apache poi 3.9 library) program read those files perfectly but i want to update some of those files. how can i be able to update those files through my program. is there is any library or function/class that might be helpful, or also any other language that can support that feature (among c/c++, python)..???
Take the 2-minute tour
×
Programmers Stack Exchange is a question and answer site for professional programmers interested in conceptual questions about software development. It's 100% free, no registration required.
closed as off-topic by GlenH7, MichaelT, Corbin March, Dan Pichelman, Kilian Foth Aug 19 '13 at 14:37
|
|||||||||||||
|
There are a bunch of examples on the Apachi POI library site on how to change and save Excel files. Here are a couple of pages to get you started:
E.g. workbook objects in the library have a
If you want to open the files in Excel you can, according to this answer, try using
|
|||||||||||||||||||||
|
If POI is not sufficient for any kind of reasons, you may have to utilize Excel by using COM Automation for such a task. Read this SO post for more information how to do this in Java. But beware, this will have some drawbacks:
|
|||||
|