Java代碼擷取NTP伺服器時間,java代碼擷取ntp
apache的commons-net包下面有ntp相關的實作類別,主要類有:
1 |
org.apache.commons.net.ntp.NTPUDPClient |
?
1 |
org.apache.commons.net.ntp.TimeInfo |
類NTPUDPClient中相關方法:
?
1 |
TimeInfo getTime(InetAddress host, int port) throws IOException |
?
1 |
TimeInfo getTime(InetAddress host) throws IOException |
其中,第二個重載方法使用協議規範預設連接埠:123。
Java程式碼片段:
?
123456789101112131415 |
public static void main(String[] args) throws IOException { try { NTPUDPClient timeClient = new NTPUDPClient(); String timeServerUrl = "202.120.2.101" ; InetAddress timeServerAddress = InetAddress.getByName(timeServerUrl); TimeInfo timeInfo = timeClient.getTime(timeServerAddress); TimeStamp timeStamp = timeInfo.getMessage().getTransmitTimeStamp(); Date date = timeStamp.getDate(); System.out.println(date); DateFormat dateFormat = new SimpleDateFormat( "yyyy-MM-dd hh:mm:ss" ); System.out.println(dateFormat.format(date)); } catch (UnknownHostException e) { e.printStackTrace(); } } |
運行結果為:
?
12 |
Thu Dec 03 16 : 16 : 50 CST 2015 2015 - 12 - 03 04 : 16 : 50 |
附:常用速度較快NTP伺服器位址:
ntp.sjtu.edu.cn 202.120.2.101 (上海交通大學網路中心NTP伺服器位址 )
time-a.nist.gov 129.6.15.28 NIST, Gaithersburg, Maryland time-b.nist.gov 129.6.15.29 NIST, Gaithersburg, Maryland time-a.timefreq.bldrdoc.gov 132.163.4.101 NIST, Boulder, Colorado time-b.timefreq.bldrdoc.gov 132.163.4.102 NIST, Boulder, Colorado time-c.timefreq.bldrdoc.gov 132.163.4.103 NIST, Boulder, Colorado