Example usage for org.apache.commons.net TimeTCPClient disconnect

List of usage examples for org.apache.commons.net TimeTCPClient disconnect

Introduction

In this page you can find the example usage for org.apache.commons.net TimeTCPClient disconnect.

Prototype

public void disconnect() throws IOException 

Source Link

Document

Disconnects the socket connection.

Usage

From source file:examples.rdate.java

public static final void timeTCP(String host) throws IOException {
    TimeTCPClient client = new TimeTCPClient();

    // We want to timeout if a response takes longer than 60 seconds
    client.setDefaultTimeout(60000);//from  w  w w  . j  a v  a  2 s .c o m
    client.connect(host);
    System.out.println(client.getDate().toString());
    client.disconnect();
}