Hello,
I've created an GAE http servlet which should handle and manipulate
incoming and outgoing emails.
I'm dealing with a problem of wrong Hebrew encoding of the incoming emails
- when receiving an email which contains Hebrew text it gets corrupted.
for instance, in the following code, the email subject contains Hebrew
characters:
public void doPost (HttpServletRequest req, HttpServletResponse resp )
throws IOException {
Message message = new MimeMessage( session, req.getInputStream() );
System.out.println( message.getSubject() );
}
The print output will be something like: ×‘×“×™×§× (or set of question
marks)
Any assistance would be appreciated.
Thanks,
Meir.
--
You received this message because you are subscribed to the Google Groups
"Google App Engine" group.
To view this discussion on the web visit
https://groups.google.com/d/msg/google-appengine/-/CZRDbHBd_usJ.
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/google-appengine?hl=en.