任何人都可以用代理帮助我吗?
我用
System.getProperties().put("proxySet", "true");
System.getProperties().put("http.proxyHost", "proxy.avp.ru");
System.getProperties().put("http.proxyPort", "8080");
System.getProperties().put("http.proxyUser", "proxyUser");
System.getProperties().put("http.proxyPassword", "proxyPassword");
并且在Netbeans中运行一切都很完美但是当我使用jar文件创建分发时,app因为代理而无法工作。为什么会这样?
由于