111,132
社区成员
发帖
与我相关
我的任务
分享
string url = "http://data.eastmoney.com/hsgt/300750.html";
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url );
request.Method = "Get";
//request.ContentType = "application/xml"; //.ContentType = "application/x-www-form-urlencoded";
WebResponse response = request.GetResponse();
StreamReader sr = new StreamReader(response.GetResponseStream(), System.Text.Encoding.GetEncoding("GB2312"));
string readStrs = sr.ReadToEnd();
response.Close();
sr.Close();