Java代碼擷取NTP伺服器時間,java代碼擷取ntp

來源:互聯網
上載者:User

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 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  

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.