How to create Microsoft excel file with image in it on linux. i want to using free library ( jar file ).
Thank you.
Printable View
How to create Microsoft excel file with image in it on linux. i want to using free library ( jar file ).
Thank you.
There is Netbeans plugin for OpenOffice api. I think it might help you
Personally I would create a csv file. It's a plaintext format and excel works just fine with those.
csv stands for comma seperated values. :)
just like
value;value;value
value;value;value
value;value;value
...
I have created excel report using Netbeans plugin for OpenOffice api.
now it's work well
Thank you.
Just by the way... There is also the HSSF libraries which do a lot of MS Office stuff. Not everything is implemented, but enough to get a good solution going. I am currently using these libraries for generating Excel reports from Oracle database. Check it out here: http://poi.apache.org/hssf/index.html