メールを送信するためにJavaメール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);
私を助けてください 。前もって感謝します..