Re: Generating excel sheets through JSP
On Mar 16, 8:06 pm, Andrew Thompson <andrewtho...@gmail.com> wrote:
On Mar 16, 7:19 pm, ruds <rudra...@gmail.com> wrote:
...
( * I can offer no useful suggestions, ..
But now I think about it, I will ask a general
question re JSP of anybody that can answer it.
Is there any chance of 'swallowing exceptions'
within a JSP? I did some JSP, but my recollection
is fuzzy.
And to the OP. Do you understand what I mean by
'swallow exceptions'? OK.. since I'm here, the
general form would be
try {
// something that might fail
catch(Exception e) {
//do nothing useful with the information
// and continue
}
That owuld be 'swallowing an exception'.
Whereas the way to do the opposite (*not*
swallow exceptions) would be to..
try {
// something that might fail
catch(Exception e) {
// be very verbose about what went wrong
e.printStackTrace();
}
How long is the JSP file? If it is short, it
may pay to post it to this thread.
--
Andrew T.
PhySci.org