I have an utf-8 mysql DB.
In my jsp files, I use:
<%@ page pageEncoding="UTF-8"%>
...
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
My browser encoding is UTF-8.
In a form, I have an input text.
When I submit the form, if the value of the input text contains, for example:
à è é à ò ù €
it is inserted a "wrong" string in the db.
After the submit, If I print the input text content is already contains "strange" chars.
As I use whereever utf-8, I don't succeed in understanding what I have to change.