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 ...
4
votes
5answers
472 views
Why is my image coming out garbled?
I've got some Java code using a servlet and Apache Commons FileUpload to upload a file to a set directory. It's working fine for character data (e.g. text files) but image files are coming out ...
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
832 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 ...
2
votes
1answer
515 views
Uploadify doesn't send filename
I'm trying to use Uploadify for uploading multiple files,
$('#fileuploadinput').uploadify({
uploader: '/js/uploadify/uploadify.swf',
script: '/uploadpath',
cancelImg: ...
1
vote
1answer
48 views
Why am I having nondeterministic file deletion errors when using DiskFileItem?
My upload servlet keeps throwing me an exception saying that the file that I'm trying to replace (near the end of my code) could not be deleted at (seemingly) random. I don't know what's causing this ...
1
vote
1answer
66 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
201 views
How to simulate a HTTP request compatible with apache common's ServletFileUpload?
I am currently trying to test some code I have in a web application that takes a HTTP multipart/form request and converts it into a list of FileItems I can use later on. Here is the method:
private ...
1
vote
1answer
678 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
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:
...
1
vote
3answers
225 views
Will Spring hold contents in memory or stores in the disk?
When a file say 100 MB size is uploaded from browser will Spring hold whole data in memory or stores in the disk temporarily. After going through Spring doc I know how to set a temp dir but I want to ...
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 ...
1
vote
1answer
2k views
Using Apache commons FileUpload
This just won't work. The problem is that I do not know enough to even know what is supposed to happen. I can't debug this code. I'd like to store upload to temporary folder "temp" and then to move ...
0
votes
1answer
773 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
1answer
136 views
How to use commons progress update to multi user environment?
Now i am uploading files with servlet and update progress with implementing ProgressListener class. The class that implements ProgressListener Static Variables. How shall i move the variables to an ...
0
votes
2answers
1k views
upload.parseRequest(request) returns empty list in commons.fileUpload
I am using org.apache.commons.fileUpload.FileItem and other related classes for uploading files from local machine to server (Although for the current testing both the machines are same).
I am ...
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
726 views
Checking for a Valid Path when Uploading a File Using commons-fileupload
I'm working with some code that uploads an image from a form and stores it on our server. In Internet Explorer the user can enter a path manually, and I wonder how I can check that the file exists, ...
-1
votes
1answer
288 views
How to upload mulitpart/form-data with apache common-fileupload and Spring?
I am trying to upload files with apache common-fileupload and spring, and my form contains fields also. but when i am trying to submit always getting null pointer exception
so now using ...