我想使用 apache commons email api 上的自定义代理发送电子邮件,因为我通过代理服务器连接到 Internet。
我尝试过使用在 java 中设置代理的常用方法,但它似乎不起作用。例如
System.getProperties().put("http.proxySet", "true" );
System.getProperties().put("http.proxyHost", "127.0.0.1");
System.getProperties().put("http.proxyPort", "6056");
和
System.getProperties().put("http.proxySet", "true" );
System.setProperty("http.proxyHost", "127.0.0.1");
System.setProperty("http.proxyPort", "6056");`
谢谢。