apache的commons-net包下面有ntp相關的實現(xiàn)類,主要類有:
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 |
其中,第二個重載方法使用協(xié)議規(guī)范默認端口:123。
java代碼段:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | 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(); } } |
運行結果為:
1 2 | Thu Dec 03 16:16:50 CST 20152015-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
新聞熱點
疑難解答