How to trap SizeLimitExceededException with apache FileUpload?
K DeLucia
Ranch Hand
Joined: Apr 11, 2008
Posts: 68
posted
0
I have an application that allows people to submit multiple files via the web. I'm using a jQuery multiple file upload
plugin on the front-end and I'm using Apache's FileUpload on the backend in my servlet.
I'm running into a problem where if the user tries to upload a file that exceeds the maximum size, I get an exception
and I can't seem to trap it. That means I can't display a meaningful error back to the user.
I've done some Google searches and found some code that looks like it may work, but it's way too complex for me
to even begin understanding and most of it seems to involve either Struts, myFaces or Spring, none of which I'm
currently using.
Any ideas on how I can gracefully notify the user that the file is too large to upload?
This is (part of) the stack trace I get:
The error occurs when I try to do this:
I try to catch it as follows
but it isn't caught.
Here's more complete code:
This message was edited 1 time. Last update was at by Andrew Monkhouse
Andrew Monkhouse
author and jackaroo
Marshal Commander
And this is line 258:
fileItems = upload.parseRequest(request);
(line 62 above)
So, when it does the parse, it generates the exception.
Thanks!
Carol Enderlin
drifter
Ranch Hand
Joined: Oct 10, 2000
Posts: 1336
posted
0
Are you sure it is not catching it? Did you try it in the debugger or carefully examine the log output?
What exactly happens when the size limit is exceeded? It looks like you are just returning like normal but would then get a null pointer because your fileItems would be null.
I plugged your catch blocks into my working file upload's try and it caught just fine on the first catch:
This message was edited 1 time. Last update was at by Carol Enderlin
K DeLucia
Ranch Hand
Joined: Apr 11, 2008
Posts: 68
posted
0
I tried it again, and made a few changes and I got it to the point where it does catch it, but not in the way I expected. Usually I can catch the error and handle it somehow and return gracefully to the user. In this case, it catches the exception, but there doesn't seem to be any way to give the user back their session variables, or recover their data. The best I can do it present the user with the error and the web form that is missing all the text they entered. I'll have to work at it some more I guess. Maybe if I move the upload fields to a separate form and submit them separately from the rest of the form I can work with that somehow.
nguyen Thanh Hoc
Greenhorn
Joined: Aug 24, 2010
Posts: 1
posted
0
Hi,
I have the same problem with you, that means if I attach big file size, then all the data filled on the form is lost.
If you have resolved your pb, could you share it with me, please? Thanks.