r9 - 22 Feb 2008 - 16:46:04 - SteveKosteckeYou are here: NTP >  Support Web > OtherImplementations > JavaSntpClient
REFACTOR See JavaSntpClientDev for discussion of this topic.

13.3. Java SNTP Client

This is a Java implementation of an NTP client, and is released under the GPL license. It handles NTP parameters as native Java types, making it Java-programmer-friendly. The algorithm used to calculate the local clock offset is the SNTP algorithm as specified in RFC2030. However, this code may be easily updated to use the more complex RFC 1305 NTP algorithms with no change to NtpMessage class.

The Java implementation consists of the following two classes:

  • NtpMessage.java
    Represents an NTP message, exposing members as native java types. Include a NtpMessage(byte[] array) constructor to import a raw NTP message, and a toByteArray() method to export a raw NTP message.

  • SntpClient.java
    NTP client which instances an NtpMessage and uses the SNTP algorithm to calculate local clock offset. Note that this class merely performs the NTP process and displays the results - it does not actually modify the system clock.

Limitations

This implementation is a first attempt, and is possibly naïve in its approach. In particular, it is subject to the following issues:

  • SntpClient.java determines the current time of day using System.currentTimeMills(). Firstly, the value returned is of millisecond accuracy. How accurate should the client timestamps be? Secondly, under Win32 the value is limited to a precision of 10ms. What impact does this have on precision?

  • Timestamps are maintained as double values. Timestamps are converted from fixed point format to double during NtpMessage creation and back to fixed point format again during toByteArray(). How much error does this introduce?

-- AdamBuckley - 22 Jan 2004

Show attachmentsHide attachments
Topic attachments
I Attachment Action Size Date Who Comment
javajava NtpMessage.java manage 14.8 K 28 Aug 2004 - 03:33 AdamBuckley Updated as per comments page
javajava SntpClient.java manage 4.0 K 28 Aug 2004 - 03:35 AdamBuckley Updated as per comments page
Edit | Attach | Printable | Raw View | Backlinks: Web, All Webs | History: r9 < r8 < r7 < r6 < r5 | More topic actions
 
NTP Public Services Project
SSL security by CAcert
Get the CAcert Root Certificate
This site is powered by the TWiki collaboration platformCopyright © 1999-2009 by the contributing authors. All material on this collaboration platform is the property of the contributing authors. Ideas, requests, problems regarding the site? Send feedback