使用javamail出现java.net.SocketException: Network is unreachable: connect异常 解决方法

在ssh中使用javamail自动发送邮件,出现异常如下

[html]  view plain copy print ?
  1. javax.mail.MessagingException: Could not connect to SMTP host: xxx.xxx.xxx, port: 25;  
  2.   nested exception is:  
  3.     java.net.SocketException: Network is unreachable: connect  

这里使用的smtp服务器是公司内部的服务器,之前使用163的smtp服务器时没有出现该问题,查了很长时间的资料,终于找到解决方法:

将java.net.preferIPv4Stack设置为true,如果程序中有main方法,可以在main方法的开头加入

[java]  view plain copy print ?
  1. System.setProperty("java.net.preferIPv4Stack""true");  

如果使用tomcat服务器,则可以给tomcat加上启动参数

[html]  view plain copy print ?
  1. -Djava.net.preferIPv4Stack=true   

如果是使用的eclipse javaee启动的tomcat,使用如下方法设置:

切换到Servers选项卡,双击Tomcat,在General Information中找到open launch configuration并单击

在弹出的窗口中选择第二个选项卡Arguments,在VM arguments的输入框的最后加上

-Djava.net.preferIPv4Stack=true

你可能感兴趣的:(使用javamail出现java.net.SocketException: Network is unreachable: connect异常 解决方法)