跟据Email 查找 SMTP 服务器

package  com.roadway.edserver.util;

import  java.util.HashMap;
import  java.util.Hashtable;
import  javax.naming.Context;
import  javax.naming.directory.Attribute;
import  javax.naming.directory.Attributes;
import  javax.naming.directory.DirContext;
import  javax.naming.directory.InitialDirContext;

public   class  FetchSMTP  {
    
private static FetchSMTP smtpFetcher = new FetchSMTP();
    
public static HashMap<String, String> smtps = new HashMap<String, String>();
    
private FetchSMTP(){};
    
public static FetchSMTP getInstance(){
        
return smtpFetcher;
    }

    
private String getSmtpByAtBackside(String atBackside) {
        String smtpServer 
= null;
        
try {
            Hashtable
<String, String> env = new Hashtable<String, String>();
            env.put(Context.INITIAL_CONTEXT_FACTORY,
"com.sun.jndi.dns.DnsContextFactory");
            DirContext ctx 
= new InitialDirContext(env);
            Attributes attrsAll 
= ctx.getAttributes(atBackside);
            Attribute attrMx 
= attrsAll.get("MX");
            String recordMx 
= (String) attrMx.get();
            smtpServer 
= recordMx.substring(recordMx.indexOf(" "+ 1);
        }
 catch (Exception e) {}
        
return smtpServer;
    }


    
public String getSmtpByEmail(String email) {
        String smtp 
= null;
        
if (email != null ) {
            String atBackside 
= email.substring(email.indexOf("@"+ 1, email.length());
            smtp 
= smtps.get(atBackside);
            
if (smtp == null{
                smtp 
= this.getSmtpByAtBackside(atBackside);
                
if (smtp != null{
                    FetchSMTP.smtps.put(atBackside, smtp);
                }

            }

        }

        
return smtp;
    }

    
public static void main(String args[]){
        FetchSMTP f 
= FetchSMTP.getInstance();
        System.out.println(f.getSmtpByEmail(
"hwpok@163.com"));
    }

}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值