Javamail中的常见中文乱码问题与解决办法(综合)

2008-02-23 09:42:34来源:互联网 阅读 ()

新老客户大回馈,云服务器低至5折

在使用JavaMail api开发邮件服务系统时,我们常常会碰到很多中文乱码问题,下面就分别介绍如何解决这些问题。

1.发送名称含中文的附件到邮件服务器,用别的邮件接收程序接收到的附件名显示为乱码

解决办法:
在调用MimeBodyPart的setFileName()时使用Base64编码。例如:
  1. BASE64Encoder enc = new BASE64Encoder();//该类位于jre/lib/rt.jar中
  2. //fds为FileDataSource实例
  3. mbp.setFileName("=?GBK?B?" enc.encode((fds.getName()).getBytes()) "?=");


2.接收邮件时,获取某些邮件发送程序发送的email地址,发送地址显示为乱码

解决办法:
对含有中文的发送地址,使用MimeUtility.decodeTex方法,对其他则把地址从ISO8859_1编码转换成gbk编码,见下例
  1. public static String getFrom(Message msg){
  2. String from="";
  3. try{
  4. if(msg.getFrom()[0]!=null)
  5. from=msg.getFrom()[0].toString();
  6. if(from.startsWith("=?GB")||from.startWith(“=?gb”)){
  7. from=MimeUtility.decodeText(from);
  8. }else{
  9. from=StringUtil.toChinese(from);
  10. }
  11. }catch(Exception e){
  12. e.printStackTrace();
  13. }
  14. from=StringUtil.replaceStr(from,“<”,“<”);// replaceStr为字符串替换函数
  15. from=StringUtil.replaceStr(from,">",">");
  16. return from;
  17. }
  18. ///////////////////StringUtil的toChinese方法//////////////////////////
  19. public static String toChinese(String strvalue){
  20. try{
  21. if(strvalue==null)
  22. return null;
  23. else{
  24. strvalue = new String(strvalue.getBytes("ISO8859_1"), "GBK");
  25. return strvalue;
  26. }
  27. }catch(Exception e){
  28. return null;
  29. }
  30. }


3.接收邮件时,获取某个邮件的中文附件名,出现乱码

解决办法:
对于用base64编码过的中文,则采用base64解码,否则对附件名进行ISO8859_1到gbk的编码转换,例如:
  1. String temp=part.getFileName();//part为Part实例
  2. if((temp.startsWith("=?GBK?B?")&&temp.endsWith("?="))
  3. ||(temp.startsWith("=?gbk?b?")&&temp.endsWith("?="))){
  4. temp=StringUtil.getFromBASE64(temp.substring(8,temp.indexOf("?=")-1));
  5. }else{
  6. temp=StringUtil.toChinese(temp);//该方法如前所叙
  7. }
  8. /////////////StringUtil的getFromBASE64方法/////////
  9. public static String getFromBASE64(String s) {
  10. if (s == null) return

    标签:

    版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
    特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:Eclipse实用教程(使用环境)

下一篇:61条面向对象设计的经验原则