FAQ

1. java中如何设置http代理服务器?

   System.getProperties().put("proxySet", "true");
   System.getProperties().setProperty("http.proxyHost", host);
   System.getProperties().setProperty("http.proxyPort", port()); 

你可能感兴趣的:(java,服务器)