Tagged Questions

4
votes
1answer
1k views

How can I avoid OutOfMemoryErrors when using Commons FileUpload's DiskFileItem to upload large files?

I am getting OutOfMemoryErrors when uploading large (>300MB) files to a servlet utilizing Commons FileUpload 1.2.1. It seems odd, because the entire point of using DiskFileItem is to prevent the ...
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 ...
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
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
1answer
1k views

How to set the path to “context path” for uploaded files using Apache Common fileupload?

I'm using Apache common fileupload library with Netbeans 6.8 + Glassfish.I'm trying to change the current upload path to be in the current context path of the servlet , something like this: ...
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 ...
0
votes
2answers
463 views

Commons File Upload Not Working In Servlet

I have a servlet which is meant to handle the upload of a very large file. I am trying to use commons fileupload to handle it. Currently, the file I am attempting to upload is 287MB. I set up the ...
0
votes
1answer
774 views

FileUpload: DeferredFileOutputStream class not found?

I'm using apache FileUpload to handle a.. file upload. I'm using it with jetty. The servlet sees the multipart request, but throws a NoClassDefFoundError exception upon execution: protected void ...
0
votes
2answers
9k views

java.lang.NoClassDefFoundError: javax/servlet/http/HttpServletRequest

I'm developing a servlet that receives a multipart request with content of multiple files, and I'm using apache commons file upload libraries. When I call parseRequest(request); method servlet throws ...
0
votes
1answer
538 views

How to parse multipart/mixed content from JSP to servlets

I'm sending multipart/mixed content message from JSP to servlets but when I used ServletFileUpload.isMultipartContent(request); method to check if the request is Multipart or not, I'm getting ...
0
votes
1answer
2k views

commons fileUpload: specifying an upload directory within Webapplication context

I'd like to know how to specify an upload directory preferably a relative path to a directory under my WEB-CONTENT directory where I'd like to store uploaded files: I get an error when I specify the ...
0
votes
1answer
573 views

How can I find the encoding of a FileItemStream returned by FileItemIterator?

I use Apache Commons FileUpload to receive uploaded files in a Servlet, as described at http://code.google.com/appengine/kb/java.html#fileforms ServletFileUpload upload = new ...
0
votes
1answer
287 views

parseRequest returning no items

i'm using the commons.fileupload .. when i try to parse the request i get no items from it which later leads to a null pointer exception... as far as i understand, this happens because "Why is ...