您好,我会确定一种方法来输入任何类型的位置数据(我可以满足它几乎任何东西(,例如城市/州,邮政编码,街道地址等。并获取该位置的当地时间。
该功能是否内置在某个地方,或者是否有我已经开发的好资源/类?
谢谢。
最终从谷歌搜索中检索搜索结果,因为我没有纬度/经度。
用户HTML敏捷提取页面内容,过滤包含"时间"的节点,简单到第一项是需要的结果。
如果你谷歌"时间辛辛那提哦",你会在页面顶部得到"星期五下午1:41(美国东部时间(-俄亥俄州辛辛那提的时间"。 此代码块提取该代码块。安全是如果时间无法确定,搜索页面只显示结果,所以数组中的第一项就像"显示"yourSearch"的结果"等。
public void timeZoneUpdate()
{
try
{
arrayToParse.Clear();
string URL = @"https://www.google.com/search?q=time+" + rowCity + "%2C+" + rowState;
HttpWebRequest myRequest = (HttpWebRequest)WebRequest.Create(URL);
myRequest.Method = "GET";
WebResponse myResponse = myRequest.GetResponse();
StreamReader sr = new StreamReader(myResponse.GetResponseStream(), System.Text.Encoding.UTF8);
string result = sr.ReadToEnd();
sr.Close();
myResponse.Close();
//Console.Write(result);
HtmlAgilityPack.HtmlDocument htmlSnippet = new HtmlAgilityPack.HtmlDocument();
htmlSnippet.Load(new StringReader(result));
bool foundSection = false;
foreach (HtmlAgilityPack.HtmlNode table in htmlSnippet.DocumentNode.SelectNodes("//table"))
{
foreach (HtmlAgilityPack.HtmlNode row in table.SelectNodes("tr"))
{
foreach (HtmlAgilityPack.HtmlNode cell in row.SelectNodes("td"))
{
if (cell.InnerText.Contains("Time"))
{
foundSection = true;
}
if (foundSection)
{
//Console.WriteLine("Cell value : " + cell.InnerText);
arrayToParse.Add(cell.InnerText);
}
}
}
}
retrievedTimeZone = arrayToParse[0].ToString().Split('-')[0].Trim();
if(retrievedTimeZone.Contains("Showing"))
{
retrievedTimeZone = "Undetermined";
}
}