我需要你在下載使用URL HttpWebResponse找到更好的方式幫助幫助C#
我用下面的代碼
HttpWebResponse myboot = HttpWebRequest.Create("http://www.wwenews.us/m1.php?id=441229").GetResponse() as HttpWebResponse;
StreamReader myboot_content = new StreamReader(myboot.GetResponseStream(), Encoding.GetEncoding("windows-1256"));
string temp_data = myboot_content.ReadToEnd();
但問題說
The server committed a protocol violation. Section=ResponseHeader Detail=CR must be followed by LF
在我嘗試解析時出現在我身上http://www.wwenews.us/m1.php?id=441229
請幫我下載這個網站的字符串
注:目前前測試解決方案的代碼,因爲我已經測試了幾種解決方案,並沒有一個解決問題
我想你的代碼。不是repro!頁面已下載。 – Andrey
請發佈完整的錯誤消息,包括堆棧跟蹤。 –
您也可以使用HttpClient「下載」該頁面。它比HttpWebRequest/HttpWebResponse更容易使用,但缺少一點功能 – Kane