我從網站上下載一個字符串的文件,我需要得到所有的信息和文本加載列表框,可惜林我在按鈕點擊事件每次收到一個錯誤。從URL中下載字符串並用返回的數據加載ListBox?
我的代碼:
var httpClient = new HttpClient();
var text = await httpClient.GetStringAsync(@"http://photo-51.netau.net/changelog");
StreamReader sr = new StreamReader(@text, System.Text.Encoding.Default);//here I have an Invalid Path Character error
string line;
while ((line = sr.ReadLine()) != null)
{
listBox1.Items.Add(line);
}
我和路徑無效字符。我該如何解決它?
@邁克爾至少改變我無法找到一個answear我的問題在這個鏈接 –