I need my software to communicate with an NTP server to determine the local clock offset. I have tried using the org.apache.commons.net.ntp package, but its implementation is rather poor when running on Windows, because of the use of System.currentTimeMillis() to determine the time before and after the NTP packet exchange. As you may or may not know, this value is only updated when the system clock ticks, which on most modern Win2k3 servers is at 64Hz or every 15.625ms. This greatly limits the accuracy of the clock offset calculation.

Ntpd uses the CPU high-frequency timer to interpolate between system clock ticks, and achieve much higher resolution time. Do you know of a Java implementation that uses this or a similar technique? Or do you know of any other NTP implementation other than Apache's?

link|improve this question

64% accept rate
Can you not submit a patch to the Apache Commons library? – Bill Michell Jun 1 '09 at 13:10
1  
Given time to implement and test it, and the willingness of my corporate overlords, yes I could. – Matt Howells Jun 3 '09 at 8:33
feedback

3 Answers

there is a NTP Java implementation on support.ntp.org

link|improve this answer
Alas, it is a naive implementation of SNTP. But +1 for finding it, thanks. – Matt Howells May 29 '09 at 10:45
feedback

If you're using Java 5 or above, can you use System.nanoTime() to perform a more accurate measurement of time offsets ? You'd have to modify your existing NTP code, but you should have the source for it, and I wouldn't expect this to be difficult.

link|improve this answer
Yes, System.nanoTime() accesses the high-frequency timer, and I would expect this to be used for timestamping in a decent Java NTP implementation. However, this is non-trivial so I am hoping someone else has already done and debugged it. – Matt Howells May 29 '09 at 10:15
Yes. I couldn't find any obvious implementations though. A chance for fame and respect, maybe ? :-) – Brian Agnew May 29 '09 at 10:18
feedback

I don't mean to pee in your soup here, but you are talking about pulling time from an NTP server and calculating time offsets between that and your system time in nanoseconds. How are you going compensate for the latency getting the time from the NTP service? The reply latency could vary widely and we could be talking in terms of many 10s or 100s of milliseconds, not nanoseconds.

I just felt compelled to point that out, though it doesn't answer your question.

link|improve this answer
1  
You don't just 'pull time' from an NTP server. A key feature of NTP is that it accounts for network latency by timing several network round-trips. – Matt Howells Jun 13 '11 at 10:37
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.