首页 > 代码库 > C# 获取网络时间
C# 获取网络时间
网上时间接口很多,但是源码里根本看不到常规的DateTime类型的时间。全是时间戳形式的时间。
这里提供两个接口:
http://shijian.duoshitong.com/time.php
http://www.hko.gov.hk/cgi-bin/gts/time5a.pr?a=1
这两个接口返回的全是时间戳。都能在源码里找到。。。
取时间戳的前10位,转化成DateTime类型就可以了。前10位精确到秒。
public DateTime GetNowTime() { HttpHelper http = new HttpHelper(); HttpItem item = new HttpItem() { URL = "http://www.hko.gov.hk/cgi-bin/gts/time5a.pr?a=2", Method = "GET", }; HttpResult R = http.GetHtml(item); Regex regex = new Regex(@"0=(?<timestamp>\d{10})\d+"); Match match = regex.Match(R.Html); if (match.Success) { return GetTime(match.Groups["timestamp"].Value); } return DateTime.Now; } /// <summary> /// 时间戳转为C#格式时间 /// </summary> /// <param name=”timeStamp”></param> /// <returns></returns> private DateTime GetTime(string timeStamp) { DateTime dtStart = TimeZone.CurrentTimeZone.ToLocalTime(new DateTime(1970, 1, 1)); long lTime = long.Parse(timeStamp + "0000000"); TimeSpan toNow = new TimeSpan(lTime); return dtStart.Add(toNow); }
C# 获取网络时间
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。