API に接続して応答を得ようとしています。デバッグの一環として、応答が記録されていることを確認したいのですが、それは xml 応答である必要があります。
ここに私が持っているものがあります:
public class http extends Activity {
public void httpMethod(){
HttpClient httpclient = new DefaultHttpClient();
HttpPost httppost = new HttpPost("http://site.com/api/");
try {
// Add your data
List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(2);
nameValuePairs.add(new BasicNameValuePair("apikey", "0d4e122d20"));
nameValuePairs.add(new BasicNameValuePair("ip", "65.82.126.103"));
httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
// Execute HTTP Post Request
HttpResponse response = httpclient.execute(httppost);
} catch (ClientProtocolException e) {
// TODO Auto-generated catch block
} catch (IOException e) {
// TODO Auto-generated catch block
}
TextView myTextView = (TextView) findViewById(R.id.myTextView);
myTextView.setText(response);
}
}
取得した応答を確認しようとしていますが、行の可変応答
myTextView.setText(response)
エラーをスローしています:
response cannot be resolved to a variable
response は本当に httpresponse 型の変数ではありませんか? 何が起きてる...?