Last week, we had the author of TDD for a Shopping Website LiveProject. Friday at 11am Ranch time, Steven Solomon will be hosting a live TDD session just for us. See for the agenda and registration link
Hey,
I want to import data from my database to Excel sheet through JSP using JExcel API.....but after creating a workbook using Workbook workbook=Workbook.createWorkbook(new File("myfile.xls")); it is not appearing in the working directory....I'm new to this.....Please help....
In a web application there is no such thing as a "working directory". You must explicitly place this file where you want it to go.
And, using a JSP for this type of processing is a really poor practice. Code such as this belongs in a JAva class, not a JSP (which, in 2011, should never have any Java code within it).