开发者

Add parameters to Apache HttpPost

开发者 https://www.devze.com 2023-01-09 06:25 出处:网络
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 s

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 t开发者_JAVA百科o a full example of file+parameter upload?

Thanks,

Alex


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.


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

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号