Java中设置代理服务器

String strProxy="192.168.20.6"; 
String strPort="3128"; 
Properties systemProperties = System.getProperties(); 
systemProperties.setProperty("http.proxyHost",strProxy); 
systemProperties.setProperty("http.proxyPort",strPort); 

 

你可能感兴趣的:(java)