I have some problem with UTF-8. My client (realized in GWT) make a request to my servlet, with some parametres in the URL, as follow:
http://localhost:8080/s
For POST request I resolved the problem next way.
Finally, I have got correct utf-8 characters deliery:
e.g.
String name = request.getParameter("name");
name contains correct utf-8 string.