French characters in a JSP page
807605Jun 21 2007 — edited Jun 21 2007I have an HTML page with a form that has a text field that can accept text from the user. This text can be multilanguage and when French charcters are in the text field, when the user submits the HTML form, my JSP that retrieves the text from the text field is not encoding the characters properly.
For example, this line:
�nonc� sur la sant�, la s�curit� et le milieu de travail
Into a String object in my JSP page as this:
�?nonc�� sur la sant��, la s��curit�� et le milieu de travail
This is no doubt an encoding problem but I am not sure hot to fix it.
Anyone have any recommendations?