javax.mail.AuthenticationFailedException

        当今mail服务器大多都是通过认证才能发信的,现在的网上介绍javamail发信的文章都没有深入到有关认证的方面,除非自己装一个open relay的mail服务器,但是这样有很危险,本人根据自己工作中用的javamail的方法说一下自己的用法,不对的地方请大家多指教.

首先设置属性    Properties props = new Properties();
                            props.put(" mail.smtp.host", host);
                            props.put(" mail.smtp.auth", "true"); 注意的是此处必须加上 true要不然stmp连接的时候不会认证
用Authenticator写认证类,下面是本人的认证类
package org.xxx;
import javax.mail.*;
import javax.mail.internet.*;

public class PopupAuthenticator extends Authenticator{
         String    username=null;
         String    password=null;

         public PopupAuthenticator(){}

         public PasswordAuthentication performCheck(String user,String pass){
                username = user;
                password = pass;
                return getPasswordAuthentication();
         }

         protected PasswordAuthentication getPasswordAuthentication() {
                return new PasswordAuthentication(username, password);
         }

}

认证类写完后,在发信的程序中加上
PasswordAuthentication   pop  =  popAuthenticator.performCheck(username,password);
Session   mysession  =  Session.getInstance(props, popAuthenticator);
mailsession加的popAuthenticator

其他的方法和javamail发信的用法相似,在此不累述。
评论 5
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值