using System; using System.Collections.Generic; using System.Data; using System.Linq; using System.Threading; using MySystem.Models; using Library; using LitJson; namespace MySystem { /// /// 获取腾讯地图地址 /// public class GetTencentAddressInfoService { public readonly static GetTencentAddressInfoService Instance = new GetTencentAddressInfoService(); private GetTencentAddressInfoService() { } public void Start() { Thread th = new Thread(GetTencentAddress); th.IsBackground = true; th.Start(); } public void GetTencentAddress() { while (true) { try { string data = RedisDbconn.Instance.RPop("GetTencentAddressInfoQueue"); JsonData jsonObj = JsonMapper.ToObject(data); int Address = int.Parse(jsonObj["Data"]["Address"].ToString()); var Key = Library.ConfigurationManager.AppSettings["TencentKey"].ToString(); var info = function.GetWebRequest("https://apis.map.qq.com/ws/geocoder/v1/?address=" + Address + "&key=" + Key); } catch (Exception ex) { function.WriteLog(DateTime.Now.ToString() + ":" + ex.ToString(), "获取腾讯地图地址线程异常"); } Thread.Sleep(100000); } } } }