Hi,
I need a help from you on how to correctly get message subject from a PST file.
I’m using the following code:
MessageInfo messageInfo = (MessageInfo) messageInfoCollection.get(i);
String subject = messageInfo.getSubject();
The problem is:
Some messages have chinese letters in subject, and I’m not getting them correctly.
Instead I have the ‘?’ character.
Can you help me on setting the correct encoding to retrieve the subject accordingly?
Thanks