Please tell me what am I doing wrong when sending a request to the server?
HttpClient httpclient = new DefaultHttpClient(); HttpPost httppost = new HttpPost(postUrl); httppost.addHeader("Content-Type","application/json;charset=UTF-8") StringEntity body = new StringEntity(hashMap.get("JSON").toString()); body.setContentType("application/json; charset=UTF-8"); httppost.setEntity(body); and the server recognizes the Cyrillic alphabet as "?????"