Java Proxy settings


/ Published in: Java
Save to your folder(s)

Simple way to configure the JVM to use the proxy in the network


Copy this code and paste it in your HTML
  1. System.getProperties().put( "http.proxyHost", "10.0.0.1" );
  2. System.getProperties().put( "http.proxyPort", "3128" );

URL: http://www.neozilon.com

Report this snippet


Comments


You need to login to view comments.