HttpPost httppost = new HttpPost(url); httppost.setHeader("Content-Type", "application/x-www-form-urlencoded;charset=utf-8"); HttpResponse response = null; try { httppost.setEntity(new UrlEncodedFormEntity(params,"UTF-8")); HttpClient httpClient =HttpClientBuilder.create().build(); respons...