Java API Tutorial - Java URLConnection .getConnectTimeout ()








Syntax

URLConnection.getConnectTimeout() has the following syntax.

public int getConnectTimeout()

Example

In the following code shows how to use URLConnection.getConnectTimeout() method.

import java.net.URL;
import java.net.URLConnection;
//  w  ww.j  ava2 s  .co m
public class Main {

  public static void main(String args[]) throws Exception {

    URL u = new URL("http://www.java2s.com");
    URLConnection uc = u.openConnection();

    System.out.println(uc.getConnectTimeout());
  }

}

The code above generates the following result.