When creating an excel file from java do i need office installed on my system?
I think java using its API must be able to create the .xls or .xlsx file. We will just not be able to open it?
If anyone know the answer please let me know.
When creating an excel file from java do i need office installed on my system?
I think java using its API must be able to create the .xls or .xlsx file. We will just not be able to open it?
If anyone know the answer please let me know.
You don't need Excel application to create a .xls or .xlsx file using Java. However, to open the created file, you will need Microsoft Excel or LibreOffice Calc package.
You can use JXLS for creating a simple Excel sheet which is easy to use. This uses Apache POI in the backend. For very complex reports, Apache POI is preferred though, since Performance issues creep up in JXLS.