0

4 つのラジオ ボタンがあり、それぞれにテキストを設定したい場合、サーバーからデータを取得し、そのデータを次のようにボタンに設定します。

protected String[] doInBackground(String... params) {
HttpClient client = new DefaultHttpClient();
                website = new URI(
                        "http://10.0.2.2:8080/LocalizedBasedComptitionServer/SendQuestion");
                HttpPost request = new HttpPost();
                request.setURI(website);
                HttpResponse response = client.execute(request);
                HttpEntity entity = response.getEntity();
                results[0] = response.getFirstHeader("Info").toString();
                results[1] = response.getFirstHeader("Question").toString();
                results[2] = response.getFirstHeader("Choice1").toString();
                results[3] = response.getFirstHeader("Choice2").toString();
                results[4] = response.getFirstHeader("Choice3").toString();
                results[5] = response.getFirstHeader("Choice4").toString();
                results[6] = response.getFirstHeader("Hint1").toString();

    results[7] = response.getFirstHeader("Hint2").toString();
}
protected void onPostExecute(String[] results) {
            super.onPostExecute(results);
            question.setText(results[1]);
            choice1.setText(results[2]);
            choice2.setText(results[3]);
            choice3.setText(results[4]);
            choice4.setText(results[5]);
            firstHint.setText(results[6]);
            secondHint.setText(results[7]);
            // rightChoice = Integer.parseInt(results[8]);
        }

しかし、私の問題は、ローマ、ミラノ、イタリア、愛をクライアントに送信した場合、ラジオボタンに出力されるデータはchoice1:romaのchoice2:milan、choice3:italy、choice4:loveです。choice1、choice2を印刷したくありません。 、choice3、choice4 何が間違っているのですか、ありがとう

4

1 に答える 1

2

試すresponse.getFirstHeader("xxx").getValue()

于 2012-06-23T12:53:40.117 に答える