2

I'm trying to send a file to a Servlet. Along with this file, I also have to send some parameters (i.e. name/id, date and a few others). I'm using HttpClient on client-side and ServerFileUpload on server-side.

This is the client-side code: ...

String url = "http://localhost:8080/RicezioneServlet/RicezioneServlet";
HttpClient httpclient = new DefaultHttpClient();
HttpPost postMethod = new HttpPost(url);
MultipartEntity mpe = new MultipartEntity();
//I'm sending a .zip file
ContentBody cb = new FileBody(fileToSend,"application/zip");
mpe.addPart("file", cb);
postMethod.setEntity(mpe);
HttpResponse resp = httpclient.execute(postMethod);
HttpEntity respEntity = resp.getEntity();
System.out.println(resp.getStatusLine());

...

on the server side, we've got:

ServletFileUpload sup = new ServletFileUpload();
FileItemIterator it = sup.getItemIterator(request);
FileItemStream item = it.next();
InputStream ios = item.openStream();
//read from ios and write to a fileoutputstream.

Now, I don't know how to add the aforementioned parameters to the request... I tried to use a StringBody and to add it to the MultiPartEntity, but I get a NullPointerException at:

String author = request.getParameter("author");

which means that the parameter isn't seen as a parameter, maybe?

The only was I got it working was setting these parameters as Headers (setHeader and getHeader), but this is not an option.

Any advice? Or maybe can you redirect me to a full example of file+parameter upload?
Thanks,
Alex

Alex
  • 21
  • 1
  • 1
  • 3

2 Answers2

3

Try using similar code as pasted here :

HttpClient httpclient = new DefaultHttpClient();
HttpPost httppost = new HttpPost(url);

FileBody bin = new FileBody(new File(fileName));
StringBody comment = new StringBody("Filename: " + fileName);

MultipartEntity reqEntity = new MultipartEntity();
reqEntity.addPart("bin", bin);
reqEntity.addPart("comment", comment);
httppost.setEntity(reqEntity);

HttpResponse response = httpclient.execute(httppost);
HttpEntity resEntity = response.getEntity();

You will also need to add the external jar apache-mime4j-0.6.jar (org.apache.james.mime4j) otherwise

reqEntity.addPart("bin", bin);

would not compile.

YoK
  • 14,329
  • 4
  • 49
  • 67
  • @YoK Can you tell me maximum size of the parameter that can be sent through setEntity()? Is there any limitation on httppost.setEntity(parameter)? – Newinjava Jun 25 '15 at 11:12
1

if you use servlet 3.0, you can try add @MultipartConfig onto your servlet.

lishunli
  • 11
  • 2