Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: Open Source License 

public class Main {
    private static void setSystemProperties(String host, int port) {

        System.setProperty("http.proxyHost", host);
        System.setProperty("http.proxyPort", port + "");

        /*
        System.setProperty("https.proxyHost", host);
        System.setProperty("https.proxyPort", port + "");
                
        System.setProperty("socks.proxyHost", host);
        System.setProperty("socks.proxyPort", port + "");
         */

        System.getProperty("networkaddress.cache.ttl", "-1");

    }
}