HttpPost httpost = new HttpPost("http://...");
httpost.setEntity(new StringEntity("{\"param_name\":\"param\"}"));
httpost.setHeader("Accept", "application/json");
httpost.setHeader("Content-type", "application/json; charset=UTF-8");
HttpResponse response = httpClient.execute(httpPost);