在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
那有没有什么办法呢? 当然有,呵呵,见以下代码:
string urlStr = "http://www.domain.com"; //設定要獲取的地址
HttpWebRequest hwr = (HttpWebRequest)HttpWebRequest.Create(urlStr); //建立HttpWebRequest對象 hwr.Timeout = 60000; //定義服務器超時時間 WebProxy proxy = new WebProxy(); //定義一個網關對象 proxy.Address = new Uri("http://proxy.domain.com:3128"); //網關服務器:端口 proxy.Credentials = new NetworkCredential("f3210316", "6978233"); //用戶名,密碼 hwr.UseDefaultCredentials = true; //啟用網關認証 hwr.Proxy = proxy; //設置網關 HttpWebResponse hwrs = (HttpWebResponse)hwr.GetResponse(); //取得回應 Stream s = hwrs.GetResponseStream(); //得到回應的流對象 StreamReader sr = new StreamReader(s, Encoding.UTF8); //以UTF-8編碼讀取流 StringBuilder content = new StringBuilder(); // while (sr.Peek() != -1) //每次讀取一行,直到 返回得到的字符串 |
请发表评论