Tagged Questions

3
votes
2answers
701 views

Using Spring 3 @ExceptionHandler with commons FileUpload and SizeLimitExceededException/MaxUploadSizeExceededException

I am having trouble with catching and gracefully handling commons fileupload's FileUploadBase.SizeLimitExceededException or spring's MaxUploadSizeExceededException when uploading large files. From ...
3
votes
1answer
681 views

How to retrieve multiple values from the select field using Commons File Upload?

Update: The problem ended up being the Flash component itself. It wasn't properly compiling the multiple values from the element. I notified the developers and they implemented a workaround. Commons ...
3
votes
2answers
6k views

Apache Commons FileUpload problem on Glassfish server

I have simple web app that just has one Servlet that accepts data file and saves it to the server. I'm using "apache commons FileUpload" library. File uploading work fine on my local server (I'm using ...
2
votes
3answers
837 views

java.lang.NullPointerException while creating DiskFileItem

I am trying to write a unit test for handling a file upload controller using Spring 3. Now if I send the image over to my service method through the controller everything works fine. But when doing a ...
1
vote
1answer
68 views

InputStream closed in Apache FileUpload API

This is a very specific question. I hope there's someone here with good knowledge in FileUpload API. If you have been worked with this API you should know that when the max size of a file has been ...
1
vote
1answer
682 views

Persist CommonsMultipartFile to database

I am trying to persist a uploaded file to database using JPA. The most "natural" way (to me) is to define domain object as: @Entity class UploadFile { ... public CommonsMultipartFile ...
1
vote
1answer
167 views

Why can't upload three files with FileUpload?

i'm trying to upload three images to my server, is working, but upload always the last file selected by the user, not the three selected. Here's my code: protected void doPost(HttpServletRequest ...
1
vote
2answers
919 views

upload file using inputstream in GAE java

I am trying to upload file to google sites and am obtaining the stream using apache commons file upload. I get the input stream as under InputStream is = fileItem.openStream(); How will I ...
0
votes
1answer
40 views

Getting File Size - Apache Commons File Upload

I am having a webapplication built using Servlet and JSP. I have built a file upload functionality using apache commons library. I would like to restrict the user from uploading a huge file - hence ...