使用Java API读取mime文件名

时间:2012-12-14 16:43:56

标签: java mime

  

可能重复:
  Reading Arabic Attachments using JavaMail

我有使用Java API从mime消息中提取文件名,正文,主题的代码。但如果文件名是中文字符,则代码将其读作某些编码值

for (int i = 0; i < multipart.getCount(); i++) {

    BodyPart bodyPart = multipart.getBodyPart(i);  
    **String fileName   = bodyPart.getFileName();
}

我在哪里设置任何类型的字符集,以便准确读取?

0 个答案:

没有答案