I have configured the apache httpClient like so:
HttpProtocolParams.setContentCharset(httpParameters, \"UTF-8\"); HttpProtocolParams.setHttpElementCharset(ht
You should set charset of your string entity to UTF-8:
StringEntity stringEntity = new StringEntity(urlParameters, HTTP.UTF_8);