我都試過,但它給我一個錯誤:如何從在線.txt文件中搜索或匹配文本?
"The given path's format is not supported".
private void btnVerify_Click(object sender, EventArgs e)
{
int counter = 0;
string email = textVarify.Text;
string line="";
System.IO.StreamReader file = new System.IO.StreamReader("https://dl.dropboxusercontent.com/u/9013501/bots/lic.txt");
while ((line = file.ReadLine()) != null)
{
if (line.Contains(textVarify.Text))
{
DevComponents.DotNetBar.MessageBoxEx.Show("Email",textVarify.Text+" Found");
}
counter++;
}
file.Close();
}
有什麼錯呢?
AFAIK'StreamReader'需要一個本地文件。您可以使用「WebClient」下載文件,然後進行流式傳輸。例如:http://www.csharpdeveloping.net/Snippet/how_to_download_text_file –
謝謝AFAIK你是對的我的問題解決了 –
樂意幫忙。我添加了我的答案。 –