web-dev-qa-db-ja.com

AndroidからHttp POST request

これは、Androidからファイルを投稿する簡単な方法です。

String url = "http://yourserver.com/upload.php";
File file = new File("myfileuri");
try {
    HttpClient httpclient = new DefaultHttpClient();

    HttpPost httppost = new HttpPost(url);

    InputStreamEntity reqEntity = new InputStreamEntity(new FileInputStream(file), -1);
    reqEntity.setContentType("binary/octet-stream");
    reqEntity.setChunked(true); // Send in multiple parts if needed
    httppost.setEntity(reqEntity);
    HttpResponse response = httpclient.execute(httppost);
    //Do something with response...

} catch (Exception e) {
    e.printStackTrace();
}  

私がやりたいのは、リクエストにPOST変数をさらに追加することです。それ、どうやったら出来るの? POSTリクエストでプレーン文字列をアップロードするとき、URLEncodedFormEntityを使用します。

httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));

一方、ファイルをアップロードするときは、InputStreamEntityを使用します。

また、このファイルを$_FILES['myfilename']に具体的にアップロードするにはどうすればよいですか?

15
shiladitya

あなたのためのいくつかの方法:

  • 2つの投稿要求を行います。最初は画像ファイルを使用します。サーバーはイメージIDを返し、2番目の要求でこのIDにパラメーターを添付します。

  • または、「2リクエスト」ソリューションの代わりに、MultipartEntityリクエストを使用できます。 詳細はこちらをご覧ください

0
validcat

1日過ごした後、見つかった loopj 。次のコードサンプルを使用できます。

//context: Activity context, Property: Custom class, replace with your pojo
public void postProperty(Context context,Property property){
        // Creates a Async client. 
        AsyncHttpClient client = new AsyncHttpClient();
         //New File
        File files = new File(property.getImageUrl());
        RequestParams params = new RequestParams();
        try {
            //"photos" is Name of the field to identify file on server
            params.put("photos", files);
        } catch (FileNotFoundException e) {
            //TODO: Handle error
            e.printStackTrace();
        }
        //TODO: Reaming body with id "property". prepareJson converts property class to Json string. Replace this with with your own method 
        params.put("property",prepareJson(property));
        client.post(context, baseURL+"upload", params, new AsyncHttpResponseHandler() {
            @Override
            public void onFailure(int statusCode, Header[] headers, byte[] responseBody, Throwable error) {
                System.out.print("Failed..");
            }

            @Override
            public void onSuccess(int statusCode, Header[] headers, byte[] responseBody) {
                System.out.print("Success..");
            }
        });

    }
1
Ram Mandadapu

アプリからファイルをアップロードしたいので、ここにあなたのための良いチュートリアルがあります:

POST on Android。 を使用してHTTPサーバーにファイルをアップロードする

あなたも文字列をアップロードしたい場合、私はあなたがすでに解決策を知っていると思います:)

1
Akash Shah

最も効果的な方法は、 Android-async-http を使用することです

このコードを使用してファイルをアップロードできます:

 

    File myFile = new File("/path/to/file.png");
    RequestParams params = new RequestParams();
    try {
        params.put("profile_picture", myFile);
    } catch(FileNotFoundException e) {}

1
H.S.H