gpt4 book ai didi

java - java mail api中的getInstance错误没有找到合适的方法

转载 作者:行者123 更新时间:2023-12-01 23:25:57 26 4
gpt4 key购买 nike

我正在使用 java mail api 发送邮件,但遇到以下错误..

no suitable method found for getInstance(java.util,Properties,java.net.Authenticator)

这是我的 java 代码片段..

 Authenticator auth = new Authenticator() {

public PasswordAuthentication getPasswordAuthentication() {
return new PasswordAuthentication(userName, password.toCharArray());
}
};
Session session = Session.getInstance(properties, auth);

我在以下行中收到提到的错误..

Session session = Session.getInstance(properties, auth);

请帮助我。提前致谢..

最佳答案

问题是您导入了 java.net.Authenticator 而不是 javax.mail.Authenticator。查看错误消息中指定的类型,然后查看 Session.getInstance 文档中的参数类型。

关于java - java mail api中的getInstance错误没有找到合适的方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19974753/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com