Export to Excel in JSF
843844Jul 24 2008 — edited Jul 24 2008Hi,
I am new to JSF.
I have a requiement of exporting the list of records displayed in jsp page to excel sheet.
The data is stored in resulltrow .
I have written the following code to get the columns to a string array.
for(ResultRow r:getRows()){
str= r.getColumns();
}
I dont know to proceed further.How to iterate over the array and display the data in excel sheet.
Please anybody help....