Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Actually i'm having String in UTF-8 encoded form in the mail. I want it to decode it. I use Java mimeutility.decode text. But it doesn't decode properly. Example String

=?UTF-8?B?0J/RgNC40LLQtdGC?==?UTF-8?B?0JfQtNGA0LDQstGB0YLQstGD0LnRgtC1?=

When i used

MimeUtility.decodeText("=?UTF-8?B?0J/RgNC40LLQtdGC?==?UTF-8?B?0JfQtNGA0LDQstGB0YLQstGD0LnRgtC1?=")

it yields

Привет=?UTF-8?B?0JfQtNGA0LDQstGB0YLQstGD0LnRgtC1?=

Please help me. Thanks in advance

share|improve this question
You have two MIME-encoded strings concatenated together. MimeUtility.decodeText() can only handle one string. You need to break it apart. – ZZ Coder Jul 5 '10 at 13:23

1 Answer

It is mime-encoded -- the "B" encoding, to be specific (rfc2047 section 4.1).

I think you can decode it using javamail javax.mail.internet.InternetHeaders or MimeUtility class.

share|improve this answer
This particular string decodes to "Привет Здравствуйте". – dan04 Jul 5 '10 at 7:54

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.