这篇文章将为大家详细讲解有关c#中怎么获取北京时间,文章内容质量较高,因此小编分享给大家做个参考,希望大家阅读完这篇文章后对相关知识有一定的了解。
#region
/// <summary>
/// 获取标准北京时间
/// /// </summary>
/// /// <returns></returns>
///
public static DateTime GetStandardTime()
{
/// //<?xml version="1.0" encoding="GB2312" ?>
//- <ntsc>
//- <time>
// <year>2013</year>
// <month>8</month>
// <day>29</day>
// <Weekday />
// <hour>16</hour>
// <minite>29</minite>
// <second>12</second>
// <Millisecond />
// </time>
// </ntsc>
DateTime dt;
WebRequest wrt = null;
WebResponse wrp = null;
try
{
wrt = WebRequest.Create("http://www.time.ac.cn/timeflash.asp?user=flash");
wrt.Credentials = CredentialCache.DefaultCredentials;
wrp = wrt.GetResponse();
StreamReader sr = new StreamReader(wrp.GetResponseStream(),Encoding.UTF8);
string html = sr.ReadToEnd();
sr.Close();
wrp.Close();
int yearIndex = html.IndexOf("<year>") + 6;
int monthIndex = html.IndexOf("<month>") + 7;
int dayIndex = html.IndexOf("<day>") + 5;
int hourIndex = html.IndexOf("<hour>") + 6;
int miniteIndex = html.IndexOf("<minite>") + 8;
int secondIndex = html.IndexOf("<second>") + 8;
string year = html.Substring(yearIndex, html.IndexOf("</year>") - yearIndex);
string month = html.Substring(monthIndex, html.IndexOf("</month>") - monthIndex);
string day = html.Substring(dayIndex, html.IndexOf("</day>") - dayIndex);
string hour = html.Substring(hourIndex, html.IndexOf("</hour>") - hourIndex);
string minite = html.Substring(miniteIndex, html.IndexOf("</minite>") - miniteIndex);
string second = html.Substring(secondIndex, html.IndexOf("</second>") - secondIndex);
dt = DateTime.Parse(year + "-" + month + "-" + day + " " + hour + ":" + minite + ":" + second);
}
catch (WebException)
{
return DateTime.Parse("2013-1-1");
}
catch (Exception)
{
return DateTime.Parse("2013-1-1");
}
finally
{
if (wrp != null)
wrp.Close();
if (wrt != null)
wrt.Abort();
}
return dt;
}
#endregion
关于c#中怎么获取北京时间就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。
亿速云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。