Hello,
I am working on a problem of Garbled Symbols when send a text message from a message box in a
Jsp file. The interesting thing is that I received correct symbols in my Yahoo email but not in my GroupWise email. The following is steps that I tried.
1.
From MS
Word, select insert --> Symbols --> Font (normal text) and Subset (Mathematical Operators)
≠ not equal to
≤ less than or equal to
≥ greater than or equal to
≈ round
2. Copy and paste above Math operators from Word into a message box of my Jsp page, and send it out from my jsp page into GroupWise email and Yahoo email.
The results shown in my Yahoo email (They look correct)
≠ not equal to
≤ less than or equal to
≥ greater than or equal to
≈ round
However, the results shown in my GroupWise email (They looks NOT correct)
≠ not equal to
≤ less than or equal to
≥ greater than or equal to
≈ round
I tried to use URLEncoder. encode ( ) and URLEncoder.decoder( ) with UFT �8. It doesn�t work.
In source code SendMail.java
I replaced
messageBodyPart.setText( content, "iso-8859-1" );
with
messageBodyPart.setText( content, "UTF-8" );
It doesn�t work either.
Does anybody have any ideas in this problem? Or, this happened because GroupWise does not support the UFT-8 setup when receive email? I can find there is send setup of encoding for UFT-8 in GroupWise, however I could not find any receive setup of encoding for UFT-8 in GroupWise.
I really need help�
Thanks
Sue