/// <summary>
/// GET方式发送得结果
/// </summary>
/// <param name="url">请求的url</param>
public static string DoGetRequestSendData(string url)
{
HttpWebRequest hwRequest = null;
HttpWebResponse hwResponse = null;
string strResult = string.Empty;
try
{
hwRequest = (System.Net.HttpWebRequest)WebRequest.Create(url);
//hwRequest.Timeout = 30000;
hwRequest.Method = "GET";
hwRequest.ContentType = "application/x-www-form-urlencoded";
}
catch (System.Exception err)
{
}
try
{
hwResponse = (HttpWebResponse)hwRequest.GetResponse();
StreamReader srReader = new StreamReader(hwResponse.GetResponseStream(), Encoding.ASCII);
strResult = srReader.ReadToEnd();
srReader.Close();
hwResponse.Close();
}
catch (System.Exception err)
{
}
return strResult;
}
标签:http,请求,srReader,C#,strResult,System,hwResponse,hwRequest,string From: https://blog.51cto.com/u_15949341/6342574