How to set proxy in Java code?

Instructions:

Step 1: Ensure that your IP is authenticated in the member control panel.

Step 2: You may copy and update this code based on the requirement:

import java.net.*;
import java.util.Scanner;

 class ProxyTest {
  public static void main(String[] args) throws Exception {
InetSocketAddress proxyAddress = new InetSocketAddress(“1.1.1.1”, 8800); // Set proxy IP/port.
Proxy proxy = new Proxy(Proxy.Type.HTTP, proxyAddress);

    URL url = new URL(“https://newipnow.com/privacy-analyzer/”);
    URLConnection urlConnection = url.openConnection(proxy);
    Scanner scanner = new Scanner(urlConnection.getInputStream());
    System.out.println(scanner.next());
    scanner.close();
  }
}

How to configure your private proxies:

android proxy settings

How to set-up a proxy in Android?

google chrome proxy setup

How to set-up a proxy in Google Chrome?

proxy setup for microsoft edge

How to update Microsoft Edge proxy settings? 

mozilla firefox proxy setup

How to set-up a proxy in Firefox?