web-dev-qa-db-ja.com

Android-async-httpを使用したJSON / XMLのPOST(loopj)

Android-async-http を使用していますが、本当に気に入っています。データのPOSTで問題が発生しました。次の形式でAPIにデータを投稿する必要があります。-

<request>
  <notes>Test api support</notes>
  <hours>3</hours>
  <project_id type="integer">3</project_id>
  <task_id type="integer">14</task_id>
  <spent_at type="date">Tue, 17 Oct 2006</spent_at>
</request>

ドキュメントによると、RequestParamsを使用して実行しようとしましたが、失敗しています。これを行う他の方法はありますか? POST同等のJSONもできます。アイデアはありますか?

46
Mus

Loopj POSTの例-Twitterの例から拡張:

private static AsyncHttpClient client = new AsyncHttpClient();

RequestParams経由で通常に投稿するには:

RequestParams params = new RequestParams();
params.put("notes", "Test api support"); 
client.post(restApiUrl, params, responseHandler);

JSONを投稿するには:

JSONObject jsonParams = new JSONObject();
jsonParams.put("notes", "Test api support");
StringEntity entity = new StringEntity(jsonParams.toString());
client.post(context, restApiUrl, entity, "application/json",
    responseHandler);
125
Timothy

@Timothyの回答はうまくいきませんでした。

StringEntityContent-Typeを定義して動作させました:

JSONObject jsonParams = new JSONObject();
jsonParams.put("notes", "Test api support");

StringEntity entity = new StringEntity(jsonParams.toString());
entity.setContentType(new BasicHeader(HTTP.CONTENT_TYPE, "application/json"));

client.post(context, restApiUrl, entity, "application/json", responseHandler);

がんばろう :)

22
Danpe

jSONを投稿するより良い方法

RequestParams params = new RequestParams();
    params.put("id", propertyID);
    params.put("lt", newPoint.latitude);
    params.put("lg", newPoint.longitude);
    params.setUseJsonStreamer(true);

    ScaanRestClient restClient = new ScaanRestClient(getApplicationContext());
    restClient.post("/api-builtin/properties/v1.0/edit/location/", params, new AsyncHttpResponseHandler() {
        @Override
        public void onSuccess(int statusCode, Header[] headers, byte[] responseBody) {
        }

        @Override
        public void onFailure(int statusCode, Header[] headers, byte[] responseBody, Throwable error) {
        }
    });
6
Samira Ekrami

XMLを投稿するには

protected void makePost() {
    AsyncHttpClient client = new AsyncHttpClient();
    Context context = this.getApplicationContext();
    String  url = URL_String;
    String  xml = XML-String;
    HttpEntity entity;
    try {
        entity = new StringEntity(xml, "UTF-8");
    } catch (IllegalArgumentException e) {
        Log.d("HTTP", "StringEntity: IllegalArgumentException");
        return;
    } catch (UnsupportedEncodingException e) {
        Log.d("HTTP", "StringEntity: UnsupportedEncodingException");
        return;
    }
    String  contentType = "string/xml;UTF-8";

    Log.d("HTTP", "Post...");
    client.post( context, url, entity, contentType, new AsyncHttpResponseHandler() {
        @Override
        public void onSuccess(String response) {
            Log.d("HTTP", "onSuccess: " + response);
        }
          ... other handlers
    });
}
1
Oyaji

JSONObjectを作成し、それを文字列「someData」に変換し、「ByteArrayEntity」で送信するだけです

    private static AsyncHttpClient client = new AsyncHttpClient();
    String someData;
    ByteArrayEntity be = new ByteArrayEntity(someData.toString().getBytes());
    client.post(context, url, be, "application/json", responseHandler);

それは私のためにうまく機能しています。

0
AndroidLad

HttpclientがContent-Type: text/plainとして送信する問題がある場合は、このリンクを参照してください: https://stackoverflow.com/a/26425401/3611

Loopj httpclientが多少変更されている(または問題がある)ため、StringEntityネイティブContent-Typeをapplication/jsonにオーバーライドできません。

0
Youngjae

JSON文字列を何らかの種類のInputStreamとして追加できます-ByteArrayStreamを使用し、それをRequestParamsに渡して、正しいMimeTypeを設定する必要があります

InputStream stream = new ByteArrayInputStream(jsonParams.toString().getBytes(Charset.forName("UTF-8")));
multiPartEntity.put("model", stream, "parameters", Constants.MIME_TYPE_JSON);
0

xmlまたはjsonを文字列に書き込み、適切なヘッダーを使用して、または使用せずにサーバーに送信するだけです。はい、「Content-Type」を「application/json」に設定します

0

Xmlファイルをphpサーバーに投稿するには:

public class MainActivity extends AppCompatActivity {

/**
 * Send xml file to server via asynchttpclient lib
 */

Button button;
String url = "http://xxx/index.php";
String filePath = Environment.getExternalStorageDirectory()+"/Download/testUpload.xml";

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    button = (Button)findViewById(R.id.button);

    button.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            postFile();
        }
    });
}

public void postFile(){

    Log.i("xml","Sending... ");

    RequestParams params = new RequestParams();

    try {
        params.put("key",new File(filePath));
    }catch (FileNotFoundException e){
        e.printStackTrace();
    }

    AsyncHttpClient client = new AsyncHttpClient();

    client.post(url, params, new AsyncHttpResponseHandler() {
        @Override
        public void onSuccess(int i, cz.msebera.Android.httpclient.Header[] headers, byte[] bytes) {
            Log.i("xml","StatusCode : "+i);
        }

        @Override
        public void onFailure(int i, cz.msebera.Android.httpclient.Header[] headers, byte[] bytes, Throwable throwable) {
            Log.i("xml","Sending failed");
        }

        @Override
        public void onProgress(long bytesWritten, long totalSize) {
            Log.i("xml","Progress : "+bytesWritten);
        }
    });
}

}

Android-async-http-1.4.9.jarをAndroid studioに追加した後、build.gradleに移動してcompile 'com.loopj.Android:android-async-http:1.4.9'依存関係の下

AndroidManifest.xmlに次を追加します。

<uses-permission Android:name="Android.permission.INTERNET" /> <uses-permission Android:name="Android.permission.READ_EXTERNAL_STORAGE" />

0
Asif