package com.util.mail; import javax.mail.Authenticator; import javax.mail.PasswordAuthentication; public class MyAuthenticator extends Authenticator{ String userName=null; String password=null; public MyAuthenticator(){ } public MyAuthenticator(String username, String password) { this.userName = username; this.password = password; } protected PasswordAuthentication getPasswordAuthentication(){ return new PasswordAuthentication(userName, password); } }

lzx602 LV3
2024年4月15日
1358849392 LV21
2022年12月27日
kahvia LV1
2022年5月8日
marcoreus1 LV2
2021年10月13日
shiopaaa LV13
2021年6月8日
yejing238 LV1
2021年1月31日
wslasdfgh LV2
2020年2月13日
lyailwy LV2
2019年12月27日
ghyghy LV9
2019年12月13日
huangfukexing LV3
2019年9月24日