Example usage for org.apache.commons.net.daytime DaytimeTCPClient disconnect

List of usage examples for org.apache.commons.net.daytime DaytimeTCPClient disconnect

Introduction

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

Prototype

public void disconnect() throws IOException 

Source Link

Document

Disconnects the socket connection.

Usage

From source file:examples.daytime.java

public static final void daytimeTCP(String host) throws IOException {
    DaytimeTCPClient client = new DaytimeTCPClient();

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