使用NTP获取网络时间-----java

在做系统对时的时候,需要使用到ntp来获取时间。

可以使用common-net包来获取ntp服务器的时间(即可以向那些标准时间服务器对时,也可以向自己设置好的ntp服务器进行对时)。

使用java获取ntp的时间(t1,t2,t3,t4)。下面是官网上给出的关于使用common-net关于ntp部分的使用例子。

很详细,很有帮助。

  1 public class test {
  2
  3     private static final NumberFormat numberFormat = new java.text.DecimalFormat("0.00");
  4     public static String ServerIP = "124.193.130.182";
  5
  6     public static final  void main(String[] args) throws IOException
  7     {
  8
  9             NTPUDPClient client = new NTPUDPClient();
 10             // We want to timeout if a response takes longer than 10 seconds
 11             client.setDefaultTimeout(10000);
 12             try {
 13                 client.open();
 14                 InetAddress hostAddr = InetAddress.getByName(ServerIP);
 15                 System.out.println(" > " + hostAddr.getHostName() + "/" + hostAddr.getHostAddress());
 16                 TimeInfo info = client.getTime(hostAddr);
 17                 processResponse(info);
 18             } catch (SocketException e) {
 19                 e.printStackTrace();
 20             }
 21             client.close();
 22     }
 23
 24
 25     public static  void processResponse(TimeInfo info)
 26     {
 27             NtpV3Packet message = info.getMessage();
 28             int stratum = message.getStratum();
 29             String refType;
 30             if (stratum <= 0)
 31                 refType = "(Unspecified or Unavailable)";
 32             else if (stratum == 1)
 33                 refType = "(Primary Reference; e.g., GPS)"; // GPS, radio clock, etc.
 34             else
 35                 refType = "(Secondary Reference; e.g. via NTP or SNTP)";
 36             // stratum should be 0..15...
 37             System.out.println(" Stratum: " + stratum + " " + refType);
 38             int version = message.getVersion();
 39             int li = message.getLeapIndicator();
 40             System.out.println(" leap=" + li + ", version="
 41                     + version + ", precision=" + message.getPrecision());
 42             System.out.println(" mode: " + message.getModeName() + " (" + message.getMode() + ")");
 43             int poll = message.getPoll();
 44             // poll value typically btwn MINPOLL (4) and MAXPOLL (14)
 45             System.out.println(" poll: " + (poll <= 0 ? 1 : (int) Math.pow(2, poll))
 46                     + " seconds" + " (2 ** " + poll + ")");
 47             double disp = message.getRootDispersionInMillisDouble();
 48             System.out.println(" rootdelay=" + numberFormat.format(message.getRootDelayInMillisDouble())
 49                     + ", rootdispersion(ms): " + numberFormat.format(disp));
 50             int refId = message.getReferenceId();
 51             String refAddr = NtpUtils.getHostAddress(refId);
 52             String refName = null;
 53             if (refId != 0) {
 54                 if (refAddr.equals("127.127.1.0")) {
 55                     refName = "LOCAL"; // This is the ref address for the Local Clock
 56                 } else if (stratum  >= 2) {
 57                     // If reference id has 127.127 prefix then it uses its own reference clock
 58                     // defined in the form 127.127.clock-type.unit-num (e.g. 127.127.8.0 mode 5
 59                     // for GENERIC DCF77 AM; see refclock.htm from the NTP software distribution.
 60                     if (!refAddr.startsWith("127.127")) {
 61                         try {
 62                             InetAddress addr = InetAddress.getByName(refAddr);
 63                             String name = addr.getHostName();
 64                             if (name != null && !name.equals(refAddr))
 65                                 refName = name;
 66                         } catch (UnknownHostException e) {
 67                             // some stratum-2 servers sync to ref clock device but fudge stratum level higher... (e.g. 2)
 68                             // ref not valid host maybe it‘s a reference clock name?
 69                             // otherwise just show the ref IP address.
 70                             refName = NtpUtils.getReferenceClock(message);
 71                         }
 72                     }
 73                 } else if (version  >= 3 && (stratum == 0 || stratum == 1)) {
 74                     refName = NtpUtils.getReferenceClock(message);
 75                     // refname usually have at least 3 characters (e.g. GPS, WWV, LCL, etc.)
 76                 }
 77                 // otherwise give up on naming the beast...
 78             }
 79             if (refName != null && refName.length()  > 1)
 80                 refAddr += " (" + refName + ")";
 81             System.out.println(" Reference Identifier:\t" + refAddr);
 82             TimeStamp refNtpTime = message.getReferenceTimeStamp();
 83             System.out.println(" Reference Timestamp:\t" + refNtpTime + "  " + refNtpTime.toDateString());
 84             // Originate Time is time request sent by client (t1)
 85             TimeStamp origNtpTime = message.getOriginateTimeStamp();
 86             System.out.println(" Originate Timestamp:\t" + origNtpTime + "  " + origNtpTime.toDateString());
 87             long destTime = info.getReturnTime();
 88             // Receive Time is time request received by server (t2)
 89             TimeStamp rcvNtpTime = message.getReceiveTimeStamp();
 90             System.out.println(" Receive Timestamp:\t" + rcvNtpTime + "  " + rcvNtpTime.toDateString());
 91             // Transmit time is time reply sent by server (t3)
 92             TimeStamp xmitNtpTime = message.getTransmitTimeStamp();
 93             System.out.println(" Transmit Timestamp:\t" + xmitNtpTime + "  " + xmitNtpTime.toDateString());
 94             // Destination time is time reply received by client (t4)
 95             TimeStamp destNtpTime = TimeStamp.getNtpTime(destTime);
 96             System.out.println(" Destination Timestamp:\t" + destNtpTime + "  " + destNtpTime.toDateString());
 97             info.computeDetails(); // compute offset/delay if not already done
 98             Long offsetValue = info.getOffset();
 99             Long delayValue = info.getDelay();
100             String delay = (delayValue == null) ? "N/A" : delayValue.toString();
101             String offset = (offsetValue == null) ? "N/A" : offsetValue.toString();
102             System.out.println(" Roundtrip delay(ms)=" + delay
103                     + ", clock offset(ms)=" + offset); // offset in ms
104     }
105
106 }
时间: 2024-11-01 12:22:19

使用NTP获取网络时间-----java的相关文章

cocos2dx获取网络时间(一)

今天在公司的cocos2dx项目中遇到一个需求,需要获取网络时间和系统时间对比,目的是防止用户更改系统时间进行某些非法操作 . 那么cocos2dx怎么来获取网络时间呢 ?我整理的思路如下: (1)由一个web api可以返回当前的网络时间 (2)cocos2dx通过http请求该api获取数据到本地 (3)cocos2dx解析数据得到当前的网络时间 一:首先就需要一个web接口来提供网络时间的数据,我在这里自己搭建一个WCF服务返回需要的数据. 新建WCF服务应用程序 , 项目命名为NetTi

.net 获取网络时间(北京时间)24小时制

/// <summary> /// 更新系统时间 /// </summary> public class UpdateTime { //设置系统时间的API函数 [DllImport("kernel32.dll")] private static extern bool SetLocalTime(ref SYSTEMTIME time); [StructLayout(LayoutKind.Sequential)] private struct SYSTEMTIM

实时获取网络时间 并转换为北京时间的函数

unit Unit1; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs,Winapi.msxml, System.DateUtils, Vcl.StdCtrls; type TForm1 = class(TForm) Button1: TButton

多方法获取网络时间

转自:http://blog.csdn.net/xiaoxian8023/article/details/7250385 在做YH维护的时候,偶尔会碰到这样的问题:电脑的非正常关机导致系统时间出错(变为了2002-1-1),从而影响到项目系统的使用.尤其是设计到money的系统,如果时间错误,可能会导致无法想象的后果.所以我们可能需要用系统和网络的双重验证. 通过收集.修改.优化和测试,剔除了一些错误的和速度超慢的,只剩下了4种可行的方案.这些方案中主要有3类: 一.通过向某网站发送请求,获取服

cocos2dx获取网络时间(二):浅析CCHttpClient

在上一篇文章cocos2dx获取网络时间(一)中,我们使用CCHttpClient进行网络时间的数据请求和使用rapidjson解析Http请求得到的json数据 .在文章的最后 ,我留下了一个问题,怎么封装一个类来实现我们的方法. 新建一个c++类 ,命名为NetTime,继承自CCNode并重写init()方法.然后引入CCHttpClient和rapidjson需要的头文件.我们的需求是可以返回NetTime的年,月,日,小时,分和秒,分别定义它们的private字段和public方法:

获取网络时间

这两天有一个应用需要获取网络时间,虽然一直知道可以从时间服务器获取时间,却从来也没有操作过,借这个机会重新进行一下深入了了解. 基本的思路就是:通过SOCKET连接时间服务器,直接接收从服务器发送的过来的时间数据. void GetNetTime() { TIME_ZONE_INFORMATION tzinfo; DWORD dwStandardDaylight; int nRet; /* Get server IP */ struct hostent *host; char *pServerI

iOS获取网络时间与转换格式

[NSDate date]可以获取系统时间,但是会造成一个问题,用户可以自己修改手机系统时间,所以有时候需要用网络时间而不用系统时间.获取网络标准时间的方法: 1.先在需要的地方实现下面的代码,创建一个URL并且连接 1 NSURL *url=[NSURL URLWithString:@"http://www.baidu.com"]; 2 NSURLRequest *request=[NSURLRequest requestWithURL:url]; 3 NSURLConnection

NTP同步网络时间

为什么要同步网络时间呢,这是由于树莓派没有RTC和后备电池,不能像PC机那样关机之后仍可以走时. NTP对时步骤: 1 安装ntpdate sudo apt-get install ntpdate sudo ntpdate -u ntp.ubuntu.com 2 在安装ntpdate后,使用tzselect来选择时区. 看到上图红色框中的一句话没有,“TZ='Asia/Shanghai'; export TZ”这句. 这段话提示用户如果我们要让自己的时间每次都是按照这样配置的话,需要将上边这句话

获取网络时间失败,求大神指点

private void GainTime() { new Thread(new Runnable() { @Override public void run() { try { URL url=new URL("http://www.taobao.com"); URLConnection uc=url.openConnection(); uc.connect(); long id=uc.getDate(); Date date=new Date(id); SimpleDateForm