Tagged Questions

2
votes
2answers
6k views

JSP - File upload with Apache Commons

Why my file-upload code is not working? I am using "commons-fileupload-1.1.1.jar". Also I am seeing a strikethrough in the 2nd Line on "isMultipartContent" in NetBeans 6.1. // Check that we ...
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
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
276 views

Using org.apache.commons.fileupload inside GenericPortlet.serveResource()

I'd appreciate your insights on this! I'm writing an application based on portlet2.0 and JSP. One of the JSPs includes a form which allows users to upload files. I'm using dojo.io.iframe.send() to ...
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 ...