大家好,又见面了,我是全栈君,今天给大家准备了Idea注册码。
WebClient位于System.Net命名空间下,通过这个类可以方便的创建Http请求并获取返回内容。
一、用法1 – DownloadData
string uri = "http://hovertree.top/"; WebClient wc = new WebClient(); Console.WriteLine("Sending an HTTP GET request to " + uri); byte[] bResponse = wc.DownloadData(uri); string strResponse = Encoding.ASCII.GetString(bResponse); Console.WriteLine("HTTP response is: "); Console.WriteLine(strResponse); // 何问起
二、用法2 – OpenRead
string uri = "http://hovertree.net"; WebClient wc = new WebClient(); Console.WriteLine("Sending an HTTP GET request to " + uri); Stream st = wc.OpenRead(uri); StreamReader sr = new StreamReader(st); string res = sr.ReadToEnd(); sr.Close(); st.Close(); Console.WriteLine("HTTP Response is "); Console.WriteLine(res); // 何问起
推荐:http://www.cnblogs.com/roucheng/p/3521864.html
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/120316.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...