Java代碼獲取NTP服務器時間


https://my.oschina.net/rupertwong/blog/538913

apache的commons-net包下面有ntp相關的實現類,主要類有:

 org.apache.commons.net.ntp.NTPUDPClient
 org.apache.commons.net.ntp.TimeInfo

類NTPUDPClient中相關方法:

 TimeInfo getTime(InetAddress host, int port) throws IOException
TimeInfo getTime(InetAddress host) throws IOException

    其中,第二個重載方法使用協議規范默認端口:123。

Java代碼段:

  1.  
       public static void main(String[] args) throws IOException {
  2.  
       try {
  3.  
       NTPUDPClient timeClient =  new NTPUDPClient();
  4.  
        String timeServerUrl = "202.120.2.101";
  5.  
       InetAddress timeServerAddress = InetAddress.getByName(timeServerUrl);
  6.  
       TimeInfo timeInfo = timeClient.getTime(timeServerAddress);
  7.  
       TimeStamp timeStamp = timeInfo.getMessage().getTransmitTimeStamp();
  8.  
        Date date = timeStamp.getDate();
  9.  
       System.out.println(date);
  10.  
       DateFormat dateFormat =  new SimpleDateFormat("yyyy-MM-dd hh:mm:ss");
  11.  
       System.out.println(dateFormat.format(date));
  12.  
      }  catch (UnknownHostException e) {
  13.  
       e.printStackTrace();
  14.  
      }
  15.  
     }

     運行結果為:

  1.  
    Thu Dec 03 16:16:50 CST 2015
  2.  
    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  


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM