HttpClient httpclient = new DefaultHttpClient();
HttpPost httppost = new HttpPost(url); // Address ( url )
HttpResponse response;
JSONObject json = new JSONObject();
json.put("passwd", param1);
json.put("comment", param2);
// String Entity to UTF-8
StringEntity se = new StringEntity(json.toString(), "UTF-8");
se.setContentType(new BasicHeader(HTTP.CONTENT_TYPE, "application/json"));
httppost.getParams().setParameter("json", json);
httppost.setEntity(se);
response = httpclient.execute(httppost);