博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Java代码获取NTP服务器时间
阅读量:5748 次
发布时间:2019-06-18

本文共 1382 字,大约阅读时间需要 4 分钟。

hot3.png

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代码段:

  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();  } }

     运行结果为:

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  

转载于:https://my.oschina.net/rupertwong/blog/538913

你可能感兴趣的文章
whereis、find、which、locate的区别
查看>>
一点不懂到小白的linux系统运维经历分享
查看>>
桌面支持--打不开网页上的pdf附件解决办法(ie-tools-compatibility)
查看>>
nagios监控windows 改了NSclient++默认端口 注意事项
查看>>
干货 | JAVA代码引起的NATIVE野指针问题(上)
查看>>
POI getDataFormat() 格式对照
查看>>
Python 中的进程、线程、协程、同步、异步、回调
查看>>
好的产品原型具有哪些特点?
查看>>
实现java导出文件弹出下载框让用户选择路径
查看>>
刨根问底--技术--jsoup登陆网站
查看>>
OSChina 五一劳动节乱弹 ——女孩子晚上不要出门,发生了这样的事情
查看>>
Spring--通过注解来配置bean
查看>>
pandas 十分钟入门
查看>>
nginx rewrite
查看>>
前端安全系列(一):如何防止XSS攻击?
查看>>
查看Linux并发连接数
查看>>
你是谁不重要,关键是你跟谁!
查看>>
CSS中规则@media的用法
查看>>
pychecker:分析你的python代码
查看>>
我的友情链接
查看>>