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

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

Introduction

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

Prototype

public Date getDate(InetAddress host) throws IOException 

Source Link

Document

Same as getTime(host, DEFAULT_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);/*from  w  w  w .j av  a 2  s  .  co m*/
    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);//from www  . ja  v  a2 s. co m
    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;// w  ww.  j  av  a  2  s  .  c  o 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();//w ww .ja  v a  2 s.  com
    Date date = client.getDate(InetAddress.getByName(host));
    client.close();
    return date;
}