Is it possible iwth jxl?
I don't see any examples?
I am reading a excel file like bleow.
Workbook book = Workbook.getWorkbook(file.getInputStream());
Sheet sheet = book.getsheet(0);
Bean b = new Bean();
ArrayList list = new ArrayList();
for(in t i=1; i< sheet.getRow(); i++)
{
String name = sheet.getCell(0, i).getContents();
and so on.....
//add to a bean.
b.setName(name);
and so on...
}
I want to add a ArrayList..
Is that possible.?
Please let me know...
Thanks
}