web-dev-qa-db-ja.com

マルチパートフォームポストを作成するApache HttpClient

私はHttpClientに非常に環境に優しいので、ドキュメントの欠如(または明らかに露骨な誤り)が非常にイライラしていることに気付きました。 Apache Http Clientを使用して次の投稿(以下にリスト)を実装しようとしていますが、実際にそれを行う方法がわかりません。来週のためにドキュメントに没頭するつもりですが、おそらく、より経験豊富なHttpClientコーダーがより早く答えを得ることができます。

役職:

Content-Type: multipart/form-data; boundary=---------------------------1294919323195
Content-Length: 502
-----------------------------1294919323195
Content-Disposition: form-data; name="number"

5555555555
-----------------------------1294919323195
Content-Disposition: form-data; name="clip"

rickroll
-----------------------------1294919323195
Content-Disposition: form-data; name="upload_file"; filename=""
Content-Type: application/octet-stream


-----------------------------1294919323195
Content-Disposition: form-data; name="tos"

agree
-----------------------------1294919323195--
65
Russ

HttpMime library のMultipartEntityBuilderを使用して、必要な要求を実行します。

私のプロジェクトでは、このようにしています:

HttpEntity entity = MultipartEntityBuilder
    .create()
    .addTextBody("number", "5555555555")
    .addTextBody("clip", "rickroll")
    .addBinaryBody("upload_file", new File(filePath), ContentType.create("application/octet-stream"), "filename")
    .addTextBody("tos", "agree")
    .build();

HttpPost httpPost = new HttpPost("http://some-web-site");
httpPost.setEntity(entity);
HttpResponse response = httpClient.execute(httpPost);
HttpEntity result = response.getEntity();

これが役立つことを願っています。

(@mtomyコードを例として使用して、非推奨のMultipartEntityの代わりにMultipartEntityBuilderを使用するようにこの投稿を更新しました)

93
mtomy

MultipartEntityが非推奨として表示されるようになりました。私はApache httpclient 4.3.3を使用しています-代わりに私たちが使用するものを知っていますか? Googleの検索はMultipartEntityの例でいっぱいであることがわかり、何も見つかりません。 – vextorspace 14年3月31日20:36で

HttpClient 4.3.xのサンプルコードを次に示します。

http://hc.Apache.org/httpcomponents-client-4.3.x/httpmime/examples/org/Apache/http/examples/entity/mime/ClientMultipartFormPost.Java

import org.Apache.http.entity.mime.MultipartEntityBuilder;

HttpPost httppost = new HttpPost("http://localhost:8080" +
        "/servlets-examples/servlet/RequestInfoExample");

FileBody bin = new FileBody(new File(args[0]));
StringBody comment = new StringBody("A binary file of some kind", ContentType.TEXT_PLAIN);

HttpEntity reqEntity = MultipartEntityBuilder.create()
        .addPart("bin", bin)
        .addPart("comment", comment)
        .build();


httppost.setEntity(reqEntity);

クラスMultipartEntityBuilderを使用するには、httpmimeが必要です。これは、HttpClientのサブプロジェクトです。

HttpClient 4.3.x:

http://hc.Apache.org/httpcomponents-client-4.3.x/index.html

httpmime 4.3.x:

http://hc.Apache.org/httpcomponents-client-4.3.x/httpmime/dependency-info.html

14
Li Ying

org.Apache.commons.httpclient.HttpClientパッケージを使用する場合、おそらくそれがあなたを助けることができます!

    HttpConnectionManager httpConnectionManager = new MultiThreadedHttpConnectionManager();
    //here should set HttpConnectionManagerParams but not important for you
    HttpClient httpClient = new HttpClient(httpConnectionManager);

    PostMethod postMethod = new PostMethod("http://localhost/media");

    FilePart filePart = new FilePart("file", new File(filepath));
    StringPart typePart = new StringPart("type", fileContent.getType(), "utf-8");
    StringPart fileNamePart = new StringPart("fileName", fileContent.getFileName(), "utf-8");
    StringPart timestampPart = new StringPart("timestamp", ""+fileContent.getTimestamp(),"utf-8");
    Part[] parts = { typePart, fileNamePart, timestampPart, filePart };

    MultipartRequestEntity multipartRequestEntity = new MultipartRequestEntity(parts, postMethod.getParams());
    postMethod.setRequestEntity(multipartRequestEntity);
    httpClient.executeMethod(postMethod);
    String responseStr = postMethod.getResponseBodyAsString();
1
Alps1992