如何使用 Apache HttpComponentst 创建和发布多部分/混合 http 请求?
Posted
技术标签:
【中文标题】如何使用 Apache HttpComponentst 创建和发布多部分/混合 http 请求?【英文标题】:how do i create and post a multipart/mixed http request using Apache HttpComponentst? 【发布时间】:2014-06-06 18:43:31 【问题描述】:我正在使用 Apache HttpComponents v4.3.3(maven httpclient 和 httpmime)。我需要上传一个包含一些元数据的文件。有效的 curl 命令如下所示。
curl -k -i -H "Content-Type: multipart/mixed" -X POST --form 'field1=val1' --form 'field2=val2' --form 'file=@somefile.zip;type =应用程序/zip'https://www.some.domain/
我尝试模仿这个 curl 帖子如下。
HttpEntity entity = MultiPartEntityBuilder
.create()
.addPart("field1",new StringBody("val1",ContentType.TEXT_PLAIN))
.addPart("field2",new StringBody("val2",ContentType.TEXT_PLAIN))
.addPart("file", new FileBody(new File("somefile.zip"), ContentType.create("application/zip"))
.build();
HttpPost post = new HttpPost("https://www.some.domain");
post.addHeader("Content-Type", "multipart/mixed");
但是,在我使用 HttpClient 执行 HttpPost 之后,我得到了以下异常(服务器代码也是在 Jetty 上运行的 Java)。
org.apache.commons.fileupload.FileUploadException:请求被拒绝,因为没有找到多部分边界
当我向 curl 添加跟踪时
curl --trace - -k -i -H "Content-Type: multipart/mixed" -X POST --form 'field1=val1' --form 'field2=val2' --form 'file=@somefile .zip;type=application/zip' https://www.some.domain/
我看到表单字段/值对设置为 HTTP 标头。
内容配置:表单数据;名称=字段1...值1
知道我在这里做错了什么吗?任何帮助表示赞赏。
【问题讨论】:
【参考方案1】:我做了一些修改,做了两件事来让代码正常工作。
不再使用 addPart(...) 不再设置 Content-Type 标头这是修改后的 sn-p,以防万一有人感兴趣。
HttpEntity entity = MultipartEntityBuilder
.create()
.addTextBody("field1","val1")
.addTextBody("field2","val2")
.addBinaryBody("file", new File("somefile.zip"),ContentType.create("application/zip"),"somefile.zip")
.build();
HttpPost post = new HttpPost("https://www.some.domain");
post.setEntity(entity);
我还将 HttpComponents 设置为调试模式。
-Dorg.apache.commons.logging.Log=org.apache.commons.logging.impl.SimpleLog -Dorg.apache.commons.logging.simplelog.showdatetime=true -Dorg.apache.commons.logging.simplelog.log.org.apache.http=DEBUG事实证明,现在每个部分都有一个边界。更好的是,Content-Type 和边界是自动生成的。
内容类型:multipart/form-data;边界=5ejxpaJqXwk2n_3IVZagQ1U0_J_X9MdGvst9n2Tc
【讨论】:
不知道为什么你没有得到任何选票 - 这是 android 上的 multipart 解决方案!我发现的其他东西都是手动完成的,这很麻烦.... 但这不是多部分/混合的。似乎有数百个答案如何使用 multipart/form-data 来做到这一点。【参考方案2】:这是我基于上次回复的完整代码,但略有不同,我有同样的错误,但现在可以工作了(感谢 Jane!):
public String sendMyFile(String p_file, String p_dni, String p_born_date) throws Exception
HttpClient httpclient = HttpClientBuilder.create().build();
HttpPost httppost = new HttpPost("http://localhost:2389/TESTME_WITH_NETCAT");
/* Campos del formulario del POST que queremos hacer */
File fileIN = new File(p_file);
/* Construimos la llamada */
MultipartEntityBuilder reqEntity = MultipartEntityBuilder.create();
reqEntity
.setMode(HttpMultipartMode.BROWSER_COMPATIBLE)
.addBinaryBody ("p_file" , fileIN)
.addTextBody ("p_dni" , p_dni)
.addTextBody ("p_born_date" , p_born_date);
httppost.setEntity(reqEntity.build());
System.out.println("executing request " + httppost.getRequestLine());
HttpResponse response = httpclient.execute(httppost);
System.out.println("1 ----------------------------------------");
System.out.println(response.getStatusLine());
System.out.println("2 ----------------------------------------");
System.out.println(EntityUtils.toString(response.getEntity()));
System.out.println("3 ----------------------------------------");
HttpEntity resEntity = response.getEntity();
if (resEntity != null)
System.out.println("Response content length: " + resEntity.getContentLength());
return "OK";
【讨论】:
欢迎来到 Stack Overflow!虽然这段代码 sn-p 可以解决问题,但including an explination 确实有助于提高帖子的质量。请记住,您是在为将来的读者回答问题,而这些人可能不知道您提出代码建议的原因。以上是关于如何使用 Apache HttpComponentst 创建和发布多部分/混合 http 请求?的主要内容,如果未能解决你的问题,请参考以下文章