2

httpリクエストのURLにパラメータとしてオブジェクトの配列(各オブジェクトには2つのフィールドがあります)を配置する必要があります。どうすればそれを行うことができ、このリンクはどのように見えるべきですか?

4

2 に答える 2

1

最善の解決策は、httppostリクエストをjsonまたはxml形式で送信することです。

于 2012-10-26T20:21:44.350 に答える
1

構造を使用してxmlを作成できます。つまり、それぞれ2つのフィールドを持つオブジェクトの配列を作成し、それを次のように文字列に変換します。例として、

       String  input = String.format("<Request><Data><Id>%s</Id></Data> 
       </Request>",studentIdSelected);

次に、データを投稿するためのパラメーターとしてinputとurlを使用して、このメソッドを呼び出します。

       public static String retriver(String Url, String input) {

    String responseString = null;
    StringEntity stringEntity;
    HttpPost postRequest = new HttpPost(Url);
    try {

        Log.e("string is", input + "\n" + Url);
        stringEntity = new StringEntity(input, "UTF-8");
        stringEntity.setContentType("application/atom+xml");

        postRequest.setEntity(stringEntity);
        Log.v("Post", "Posted");
        HttpClient httpclient = new DefaultHttpClient();
        HttpResponse response = httpclient.execute(postRequest);  
        HttpEntity getResponseEntity = response.getEntity();

        responseString = EntityUtils.toString(getResponseEntity);

    } catch (Exception e) {
        // TODO: handle exception
        postRequest.abort();
        Log.w("HttpPostRetreiver", "Error for URL " + Url, e);
    }

    return responseString;

}

または、jsonを使用することもできます。

于 2012-10-26T20:25:12.260 に答える