当前位置: 技术问答>java相关
发邮件时遇到,代理服务器的问题....
来源: 互联网 发布时间:2015-08-09
本文导语: 我用JavaMail实现收发邮件的功能,如果是一般的网络环境就没有问题,可是如果那个网络环境是用代理服务器,就会有问题。哪位知道为什么吗,有什么办法解决呢? | System.getProperties().put( "p...
我用JavaMail实现收发邮件的功能,如果是一般的网络环境就没有问题,可是如果那个网络环境是用代理服务器,就会有问题。哪位知道为什么吗,有什么办法解决呢?
|
System.getProperties().put( "proxySet", "true" );
System.getProperties().put( "proxyHost", "myProxyMachineName" );
System.getProperties().put( "proxyPort", "85" );
试试看,我没试过
System.getProperties().put( "proxyHost", "myProxyMachineName" );
System.getProperties().put( "proxyPort", "85" );
试试看,我没试过