Skip to content

Instantly share code, notes, and snippets.

@gjp0609
Created October 12, 2019 08:31
Show Gist options
  • Save gjp0609/b68d278f160f6bc7122cefc8929d3205 to your computer and use it in GitHub Desktop.
Save gjp0609/b68d278f160f6bc7122cefc8929d3205 to your computer and use it in GitHub Desktop.
java use local proxy
static {
String proxyHost = "127.0.0.1";
String proxyPort = "1080";
System.setProperty("http.proxyHost", proxyHost);
System.setProperty("http.proxyPort", proxyPort);
System.setProperty("https.proxyHost", proxyHost);
System.setProperty("https.proxyPort", proxyPort);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment