Reputation: 11602
I want to open an Excel file in browser using java 1.6. If I have changed excel sheet cell value then it will reflect on original excel file...
How to do this?
Upvotes: 1
Views: 2926
Reputation: 115388
Probably this post will help you to decide between POI and JExcel: http://java.itags.org/java-tools/122717/
Upvotes: 1
Reputation: 2037
I shall recommend to use JExcel API. I guess it is more convenient to use.
Upvotes: 1
Reputation: 318
I have used the POI libary from Apache (http://poi.apache.org/) to create/manipulate .xls in the past quite successfully.
Upvotes: 1