Welcome

Thanks for dropping by! Feel free to join the discussion by leaving comments, and stay updated by subscribing to the RSS feed. See ya around!

Categories

Tag Cloud

WP Cumulus Flash tag cloud by Roy Tanck requires Flash Player 9 or better.

How-to set proxy properties in Java

Sometimes you need to connect to internet from your java programs. It’s easy to do via URLConnection. But when you are behind the proxy server, your program doesn’t know how to deal with it. Configuration of proxy server is fairly easy. All you need to do is to setup following system properties:

System.setProperty("http.proxySet", "true");
System.setProperty("http.proxyHost", "name_of_proxy_server");
System.setProperty("http.proxyPort", "proxy_server_port_number");