Javaメール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);
//エラーを含むこれらの2行は、コードにエラーを与えています..
私を助けてください。前もって感謝します..