Hello

You shouldn't need to use URLEncoder.encode, that is only used for
encoding parameters in get URLs, e.g.:

String url = "http://www.google.co.za/search?q="; +
URLEncoder.encode("José");

However, this may still help you with your problem although I don't
think it is the correct way of doing it. To decode a URLEncoder encoded
string in JavaScript use decodeURIComponent. Have you tried
response.setCharacterEncoding("UTF-8") yet?

James


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"CTJUG Forum" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/CTJUG-Forum
For the ctjug home page see http://www.ctjug.org.za
-~----------~----~----~----~------~----~------~--~---

Reply via email to