上半年GDP数据出新,看看谁是第一
截至7月26日,各省份已经陆续公布上半年的GDP数据(浙江、河北、西藏、新疆暂未公布)。从几个方面可以有效的分析各地经济发展情况。
1、GDP总量排名
广东、江苏、山东的排名不变。广东以5.7万亿元排名全国第一,同比增长13.0%,两年平均增长5.0%。江苏第二,同比增长13.2%,两年平均增长6.9%,也是三强中经济增速最快的。山东维持第三,同比增长12.8%,两年平均增长6.1%,增速也不错。
2、GDP增速
由于疫情导致湖北去年影响较大,因此今年快速回升之后,湖北高居第一,同比增长28.5%,两年平均增长1.8%,高于全国12.7%的增速。
3、平均增速
统计两年平均增速分析,海南高居榜首,同比增长17.5%,两年平均增长7.0%。自贸港建设使得大宗商品交易、离岸贸易和离岛免税购物等业务持续保持快速增长,从而促进全省批发零售业高速增长
更多的数据请参考https://www.chinanews.com/cj/2021/07-27/9529322.shtml,可以通过采集程序定期获取经济数据,demo如下:
// 要访问的目标页面 string targetUrl = "https://www.chinanews.com"; // 代理服务器(产品官网 www.16yun.cn) string proxyHost = "http://t.16yun.cn"; string proxyPort = "31111"; // 代理验证信息 string proxyUser = "username"; string proxyPass = "password"; // 设置代理服务器 WebProxy proxy = new WebProxy(string.Format("{0}:{1}", proxyHost, proxyPort), true); ServicePointManager.Expect100Continue = false; var request = WebRequest.Create(targetUrl) as HttpWebRequest; request.AllowAutoRedirect = true; request.KeepAlive = true; request.Method = "GET"; request.Proxy = proxy; //request.Proxy.Credentials = CredentialCache.DefaultCredentials; request.Proxy.Credentials = new System.Net.NetworkCredential(proxyUser, proxyPass); // 设置Proxy Tunnel // Random ran=new Random(); // int tunnel =ran.Next(1,10000); // request.Headers.Add("Proxy-Tunnel", String.valueOf(tunnel)); //request.Timeout = 20000; //request.ServicePoint.ConnectionLimit = 512; //request.UserAgent = "Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.82 Safari/537.36"; //request.Headers.Add("Cache-Control", "max-age=0"); //request.Headers.Add("DNT", "1"); //String encoded = System.Convert.ToBase64String(System.Text.Encoding.GetEncoding("ISO-8859-1").GetBytes(proxyUser + ":" + proxyPass)); //request.Headers.Add("Proxy-Authorization", "Basic " + encoded); using (var response = request.GetResponse() as HttpWebResponse) using (var sr = new StreamReader(response.GetResponseStream(), Encoding.UTF8)) { string htmlStr = sr.ReadToEnd(); }
上半年GDP数据出新,看看谁是第一
laical
会员积分:2280
截至7月26日,各省份已经陆续公布上半年的GDP数据(浙江、河北、西藏、新疆暂未公布)。从几个方面可以有效的分析各地经济发展情况。
1、GDP总量排名
广东、江苏、山东的排名不变。广东以5.7万亿元排名全国第一,同比增长13.0%,两年平均增长5.0%。江苏第二,同比增长13.2%,两年平均增长6.9%,也是三强中经济增速最快的。山东维持第三,同比增长12.8%,两年平均增长6.1%,增速也不错。
2、GDP增速
由于疫情导致湖北去年影响较大,因此今年快速回升之后,湖北高居第一,同比增长28.5%,两年平均增长1.8%,高于全国12.7%的增速。
3、平均增速
统计两年平均增速分析,海南高居榜首,同比增长17.5%,两年平均增长7.0%。自贸港建设使得大宗商品交易、离岸贸易和离岛免税购物等业务持续保持快速增长,从而促进全省批发零售业高速增长
更多的数据请参考https://www.chinanews.com/cj/2021/07-27/9529322.shtml,可以通过采集程序定期获取经济数据,demo如下:
// 要访问的目标页面 string targetUrl = "https://www.chinanews.com"; // 代理服务器(产品官网 www.16yun.cn) string proxyHost = "http://t.16yun.cn"; string proxyPort = "31111"; // 代理验证信息 string proxyUser = "username"; string proxyPass = "password"; // 设置代理服务器 WebProxy proxy = new WebProxy(string.Format("{0}:{1}", proxyHost, proxyPort), true); ServicePointManager.Expect100Continue = false; var request = WebRequest.Create(targetUrl) as HttpWebRequest; request.AllowAutoRedirect = true; request.KeepAlive = true; request.Method = "GET"; request.Proxy = proxy; //request.Proxy.Credentials = CredentialCache.DefaultCredentials; request.Proxy.Credentials = new System.Net.NetworkCredential(proxyUser, proxyPass); // 设置Proxy Tunnel // Random ran=new Random(); // int tunnel =ran.Next(1,10000); // request.Headers.Add("Proxy-Tunnel", String.valueOf(tunnel)); //request.Timeout = 20000; //request.ServicePoint.ConnectionLimit = 512; //request.UserAgent = "Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.82 Safari/537.36"; //request.Headers.Add("Cache-Control", "max-age=0"); //request.Headers.Add("DNT", "1"); //String encoded = System.Convert.ToBase64String(System.Text.Encoding.GetEncoding("ISO-8859-1").GetBytes(proxyUser + ":" + proxyPass)); //request.Headers.Add("Proxy-Authorization", "Basic " + encoded); using (var response = request.GetResponse() as HttpWebResponse) using (var sr = new StreamReader(response.GetResponseStream(), Encoding.UTF8)) { string htmlStr = sr.ReadToEnd(); }
21-07-27 15:36
1063
0
回复
暂无评论