httppost メソッドを使用して、データが webservice に正常に投稿されたかどうかを確認したいと思います。データが正常に投稿されたことを確認する方法は? json.put("URL".getpref()); かどうかを確認する方法 Web サービスに正常に投稿されましたか?
HttpPost post = new HttpPost(url1);
try {
json.put("URL", getPref());
Log.i("json Object", json.toString());
StringEntity stringEntity = new StringEntity(json.toString());
stringEntity.setContentEncoding("UTF-8");
stringEntity.setContentType("application/json");
post.setEntity(stringEntity);
//ResponseHandler responseHandler = new BasicResponseHandler();
response = client.execute(post);
Log.e("RESPONSE", response.toString());
String responseBody = EntityUtils
toString(response.getEntity());
System.out.println(responseBody);