@author Dario
*/
public class Autenticacao extends Authenticator{
protected PasswordAuthentication
getPasswordAuthentication() {
System.out.println(“Autenticando…”);
return new PasswordAuthentication(“usuario”,“senha”);
}
}[/code]
A linha do return fica vermelha e informa o seguinte :
constructor PasswordAuthentication in class java.net.PasswordAuthentication cannot be applied to given types;
required: java.lang.String,char[]
found: java.lang.String,java.lang.String
reason: actual argument java.lang.String cannot be converted to char[] by method invocation conversion
estava com o mesmo problema e como o amigo guilherme.dio disse fiz e a linha do return (13) ficou ok.
agora a linha 09 esta vermelha com o seguinte texto
getPasswordAuthentication() in <anonymous testin.Carregando$1> cannot override getPasswordAuthentication() in Authenticator
return type java.net.PasswordAuthentication is not compatible with javax.mail.PasswordAuthentication
[quote=tibum]estava com o mesmo problema e como o amigo guilherme.dio disse fiz e a linha do return (13) ficou ok.
agora a linha 09 esta vermelha com o seguinte texto
getPasswordAuthentication() in <anonymous testin.Carregando$1> cannot override getPasswordAuthentication() in Authenticator
return type java.net.PasswordAuthentication is not compatible with javax.mail.PasswordAuthentication
alguem poderia me ajudar?[/quote]
problema resolvido… tava importando uma biblioteca errada… afff