//使用JVM参数设置这个属性,例如:-DproxyServerHost=10.1.22.175 -DproxyServerPort=1080
if(System.getProperty("proxyServerHost")!=null) { props.put("socksProxyHost",System.getProperty("proxyServerHost")); }
if(System.getProperty("proxyServerPort")!=null) { props.put("socksProxyPort",System.getProperty("proxyServerPort")); } 
|