fendouauthenticator.java
来自「网上商城代码」· Java 代码 · 共 20 行
JAVA
20 行
package com.fendou.util.mail;
import javax.mail.Authenticator;
import javax.mail.PasswordAuthentication;
public class FendouAuthenticator extends Authenticator{
String name;
String password;
public FendouAuthenticator(String name,String password){
this.name=name;
this.password=password;
getPasswordAuthentication();
}
protected PasswordAuthentication getPasswordAuthentication(){
return new PasswordAuthentication(name,password);
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?