我正在使用Apache HttpComponents v4.3.3(maven httpclient和httpmime)。我需要上传一个包含一些元数据的文件。 curl命令有效,如下所示。
卷曲-k -i -H"内容类型:multipart / mixed" -X POST - 表' field1 = val1' - 形成' field2 = val2' --form' file =@somefile.zip; type = application / zip' https://www.some.domain/
我尝试过模仿这个卷曲帖子如下。
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 --trace - -k -i -H"内容类型:multipart / mixed" -X POST - 表' field1 = val1' - 形成' field2 = val2' --form' file =@somefile.zip; type = application / zip' https://www.some.domain/
我看到表单字段/值对被设置为HTTP标头。
内容 - 处置:表单数据;命名= FIELD1 ... VALUE1
我在这里做错了什么?任何帮助表示赞赏。
答案 0 :(得分:7)
我做了一些修改并做了两件事让代码正常工作。
以下是经过修改的代码段,以防任何人感兴趣。
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
事实证明,每个部分现在都有一个边界。更好的是,内容类型和边界是自动生成的。
内容类型:multipart / form-data;边界= 5ejxpaJqXwk2n_3IVZagQ1U0_J_X9MdGvst9n2Tc
答案 1 :(得分:1)
这里我的完整代码基于最后一个响应,但略有不同,我有相同的错误,但现在有效(感谢简!):
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";
}