我正在尝试使用 java mail api 发送邮件。除了 Authenticator 类之外,代码中的所有内容都正常。它发出警告...
Constructor PasswordAuthentication can not be applied to given types.
required java.lang.String,java.lang.char[]
这是我收到警告错误但无法解决问题的代码片段...
Authenticator auth = new Authenticator() {
@Override
public PasswordAuthentication getPasswordAuthentication() {
error return new PasswordAuthentication(userName, password);
}
};
error Session session = Session.getInstance(properties, auth);
这两行带有 //error 的代码中给出了错误..
请帮我。提前致谢..