Javamail中的常见中文乱码问题与解决办法(综合)
2008-02-23 09:42:34来源:互联网 阅读 ()
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
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
下一篇:61条面向对象设计的经验原则
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash