show/hide this revision's text 2 added 19 characters in body; edited tags

I need to encode a message from request and write it into a file. Currently I am using the URLEncoder.encode() method for encoding. But it is not giving the expected result for special characters in French and Dutch.

I have tried using URLEncoder.encode(“msg”,”UTF-8”) URLEncoder.encode("msg", "UTF-8") also.

Example:
Original msgmessage: Pour gérer votre GSM
After encoding: Pour g?rer votre GSM

Can any one tell me which method I can use for this purpose?

show/hide this revision's text 1

UTF Encoding in java

I need to encode a message from request and write it into a file. Currently I am using URLEncoder.encode() method for encoding. But it is not giving expected result for special characters in French and Dutch.

I have tried using URLEncoder.encode(“msg”,”UTF-8”) also.

Example: Original msg: Pour gérer votre GSM After encoding : Pour g?rer votre GSM

Can any one tell me which method I can use for this purpose?