Posted By:
Joe_Millionaire
Posted On:
Friday, January 24, 2003 06:59 AM
You need to use the UTF8 encoding. ISO-8859-1 only handles the english language.
Create an UTF8 encoded database.
Get the latest oracle jdbc drivers.
Set response.setContentType("text/html; charset=UTF-8")
Set request.setCharacterEncoding("UTF-8")
If you do any String.getBytes() calls they must be changed to:
String.getBytes("UTF-8")
Do not use the javascript function escape() instead use encodeURIComponent() or encodeURI()
I18N in a nutshell