-
FileUpload problem
I have use the fileupload package and encountered error on this line in bold.
DiskFileItemFactory factory = new DiskFileItemFactory();
// maximum size that will be stored in memory
factory.setSizeThreshold(4096);
// the location for saving data that is larger than getSizeThreshold()
factory.setRepository(new File("/tmp"));
ServletFileUpload upload = new ServletFileUpload(factory);
// maximum size before a FileUploadException will be thrown
upload.setSizeMax(1000000);
List fileItems = upload.parseRequest(request);
// assume we know there are two files. The first file is a small
// text file, the second is unknown and is written to a file on
// the server
Iterator i = fileItems.iterator();
String comment = ((FileItem)i.next()).getString();
FileItem fi = (FileItem)i.next();
// filename on the client
String fileName = fi.getName();
// save comment and filename to database
// write the file
fi.write(new File("/www/uploads/", fileName));
Error catch:
org.apache.commons.fileupload.FileUploadBase$IOFileUploadException: Processing of multipart/form-data request failed. \tmp\upload_144f6414_11f26db7ce1__7ff8_00000000.tmp (The system cannot find the path specified)Processing of multipart/form-data request failed. \tmp\upload_144f6414_11f26db7ce1__7ff8_00000000.tmp (The system cannot find the path specified)
-
Have you verified that the path specfied does, in fact, exist?
-
I tried to put C:/ also cannot.
fi.write(new File("C:/", fileName));
-
Hi abcat,
you are using i.next() twice, it is creating problem to you.
You have only item in iterator. whenever Iterator.next() method encountered, it will return the element and also pointer will start pointing to next element. Please use some refrence variable and use that instead of using i.next(). Or if you want to traverse please put a check on i.next().
Similar Threads
-
By ramki16 in forum ASP.NET
Replies: 5
Last Post: 11-17-2008, 10:13 AM
-
Replies: 11
Last Post: 11-16-2007, 12:23 PM
-
By Shannon in forum VB Classic
Replies: 7
Last Post: 06-24-2007, 08:47 PM
-
By dbrook007 in forum ASP.NET
Replies: 0
Last Post: 11-06-2006, 04:54 AM
-
Replies: 0
Last Post: 12-13-2001, 12:06 PM
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Development Centers
-- Android Development Center
-- Cloud Development Project Center
-- HTML5 Development Center
-- Windows Mobile Development Center
|