我一直在尝试使用JavaMail从学校项目的程序发送电子邮件。我做到了,但现在它只是不时起作用。真的,无论我在哪里(在学校,在家,在咖啡馆),它有时都有效,有时则不然。
我得到的错误信息是:
线程“AWT-EventQueue-0”中的异常java.lang.RuntimeException:javax.mail.MessagingException:无法连接到SMTP主机:smtp.gmail.com,port:465; 嵌套异常是: java.net.ConnectException:连接超时:连接 在varsling.SendEmail.sendEmail(SendEmail.java:40)
奇怪的是,我没有以任何方式更改代码。 JavaMail和gmail连接有问题吗?
无论如何,这是我的代码:)
import java.util.Properties;
import javax.mail.Message;
import javax.mail.MessagingException;
import javax.mail.PasswordAuthentication;
import javax.mail.Session;
import javax.mail.Transport;
import javax.mail.internet.InternetAddress;
import javax.mail.internet.MimeMessage;
public class SendEmail {
public void sendEmail(String text, String to, String username, String password) {
Properties props = new Properties();
props.put("mail.smtp.host", "smtp.gmail.com");
props.put("mail.smtp.socketFactory.port", "465");
props.put("mail.smtp.socketFactory.class", "javax.net.ssl.SSLSocketFactory");
props.put("mail.smtp.auth", "true");
props.put("mail.smtp.port", "465");
Session session = Session.getDefaultInstance(props,
new javax.mail.Authenticator() {
protected PasswordAuthentication getPasswordAuthentication() {
return new PasswordAuthentication(username, password);
}
});
try {
Message message = new MimeMessage(session);
message.setFrom(new InternetAddress("from@no-spam.com"));
message.setRecipients(Message.RecipientType.TO,
InternetAddress.parse(to));
message.setSubject("Danger!");
message.setText(text);
Transport.send(message);
System.out.println("Sent");
} catch (MessagingException e) {
throw new RuntimeException(e);
}
} }
将setFrom()更改为其他任何内容并没有什么帮助,所以我把它设置为默认值(几周前我在某些网站上的示例中找到的内容)。
有没有人有任何修复? :S
非常感谢!
答案 0 :(得分:0)
正如上面的评论所说,这听起来像是一个网络问题,而不是JavaMail问题。也许您的防火墙或防病毒软件会干扰您的连接能力?
您可能还想阅读this JavaMail FAQ entry of common mistakes并清理代码,但我怀疑它与您的问题有关。