以下のコードを使用しましたがHttpPost
、正常に実行されました。しかし、応答を見ることができませんInputStream
。その内容が知りたいです。
文字列形式で表示したいのですが、その方法を教えてください。
HttpPost httppost = new HttpPost(requestURL);
ArrayList<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(params.length);
for (int postValueCount = 0; postValueCount < params.length; postValueCount++)
nameValuePairs.add(new BasicNameValuePair(params[postValueCount][0],params[postValueCount][1]));
try {
httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
Log.d("HttpPostRequest","URL : " + httppost.getRequestLine().getUri());
Log.d("HttpPostRequest","Method : " + httppost.getRequestLine().getMethod());
Log.d("HttpPostRequest","Parameters : " + nameValuePairs);
response = httpclient.execute(httppost);
status = response.getStatusLine();
if (status.getReasonPhrase().equals("OK")) {
httpEntity=response.getEntity();
InputStream in = httpEntity.getContent();
return in;
} else {
Log.d("Http Status", status.getReasonPhrase());
}
}