Example usage for org.apache.commons.net.time TimeUDPClient open

List of usage examples for org.apache.commons.net.time TimeUDPClient open

Introduction

In this page you can find the example usage for org.apache.commons.net.time TimeUDPClient open.

Prototype

public void open() throws SocketException 

Source Link

Document

Opens a DatagramSocket on the local host at the first available port.

Usage

From source file:examples.unix.rdate.java

public static final void timeUDP(String host) throws IOException {
    TimeUDPClient client = new TimeUDPClient();

    // We want to timeout if a response takes longer than 60 seconds
    client.setDefaultTimeout(60000);// ww w  . j  av a 2s. c om
    client.open();
    System.out.println(client.getDate(InetAddress.getByName(host)).toString());
    client.close();
}

From source file:beans.TimeClient.java

public static final void timeUDP(String host) throws IOException {
    TimeUDPClient client = new TimeUDPClient();

    // We want to timeout if a response takes longer than 60 seconds
    client.setDefaultTimeout(60000);/*w  w  w .ja  v a 2 s  .com*/
    client.open();
    System.out.println(client.getDate(InetAddress.getByName(host)));
    client.close();
}

From source file:com.nubits.nubot.NTP.NTPClient.java

private Date getTimeImpl(String host) throws IOException {
    Date toRet;//from   w  ww .j a  v  a 2s .  co m
    TimeUDPClient client = new TimeUDPClient();
    // We want to timeout if a response takes longer than TIMEOUT seconds
    client.setDefaultTimeout(TIMEOUT);
    client.open();
    toRet = client.getDate(InetAddress.getByName(host));
    client.close();

    return toRet;
}

From source file:it.jnrpe.plugin.CheckTime.java

private Date getTimeUDP(String host, int timeout) throws IOException {
    TimeUDPClient client = new TimeUDPClient();
    client.setDefaultTimeout((int) TimeUnit.SECOND.convert(timeout));
    client.open();
    Date date = client.getDate(InetAddress.getByName(host));
    client.close();/*from   ww w.j ava 2  s . c om*/
    return date;
}