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

Jagie 原创  (参与分:651,专家分:2960)   发表:2003-11-12 下午4:37   更新:2003-11-12 下午4:53   版本:1.0   阅读:3515次 
 

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

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

解决办法:
在调用MimeBodyPart的setFileName()时使用Base64编码。例如:

BASE64Encoder enc = new BASE64Encoder();//该类位于jre/lib/rt.jar中
//fds为FileDataSource实例
mbp.setFileName("=?GBK?B?"+enc.encode((fds.getName()).getBytes())+"?=");


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

解决办法:
对含有中文的发送地址,使用MimeUtility.decodeTex方法,对其他则把地址从ISO8859_1编码转换成gbk编码,见下例

public static String getFrom(Message msg){
    String from="";
    try{
      if(msg.getFrom()[0]!=null)
        from=msg.getFrom()[0].toString();
      if(from.startsWith("=?GB")||from.startWith(“=?gb”)){
        from=MimeUtility.decodeText(from);
      }else{
        from=StringUtil.toChinese(from);
      }
    }catch(Exception e){
      e.printStackTrace();
    }
    from=StringUtil.replaceStr(from,“<”,“<”);// replaceStr为字符串替换函数
    from=StringUtil.replaceStr(from,">",">");
    return from;
  }

///StringUtil的toChinese方法//
public static String toChinese(String strvalue){
    try{
      if(strvalue==null)
        return null;
      else{
        strvalue = new String(strvalue.getBytes("ISO8859_1"), "GBK");
        return strvalue;
      }
    }catch(Exception e){
      return null;
    }
  }


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

解决办法:
对于用base64编码过的中文,则采用base64解码,否则对附件名进行ISO8859_1到gbk的编码转换,例如:

String temp=part.getFileName();//part为Part实例
if((temp.startsWith("=?GBK?B?")&&temp.endsWith("?="))
   ||(temp.startsWith("=?gbk?b?")&&temp.endsWith("?="))){
    temp=StringUtil.getFromBASE64(temp.substring(8,temp.indexOf("?=")-1));
}else{
    temp=StringUtil.toChinese(temp);//该方法如前所叙
}

/StringUtil的getFromBASE64方法/ 

public static String getFromBASE64(String s) {
    if (s == null) return null;
    BASE64Decoder decoder = new BASE64Decoder();
    try {
      byte[] b = decoder.decodeBuffer(s);
      return new String(b);
    } catch (Exception e) {
      return null;
    }
  }

 

乱码问题的调试步骤总结:

基本上在javamail中碰到的中文乱码问题就这么多了,如果你的程序出现了中文乱码,首先不要惊慌,可用多个其他的邮件发送或接收程序进行验证,看是在哪个环节出现了问题,然后再仔细对照原文和乱码,调用相应的编码解码方法就行了。

 

最后,希望这篇短文能对你有所启发,祝你成功。
 
 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值