0

我已经在一个文本(link.txt)文件中保存了一些 url,在另一个文本文件中保存了一些代理(proxy.txt)。

现在我想为每个 url 使用不同的代理。

喜欢:

  • www.google.com 202.56.232.117:8080
  • www.facebook.com 506.78.781.987:9001
  • www.twitter.com 749.961.73.459:8008

这是我的代码,但我不知道如何为每个 url 使用不同的代理(proxy.txt)。

请告诉我如何使这项工作。

try
{

    foreach (string sr in File.ReadAllLines("link.txt"))
    {
        webBrowser1.Navigate(sr);
    }
    webBrowser1.ScriptErrorsSuppressed = true;
    while (webBrowser1.ReadyState != WebBrowserReadyState.Complete)
    {
        Application.DoEvents();
    }
}
catch(Exception)
{
     MessageBox.Show("Internet Connection not found","Error",MessageBoxButtons.OK,MessageBoxIcon.Error);
     this.Close();
}
4

1 回答 1

0

尝试这个:

Public Sub SetProxy(ByVal ServerName As String, ByVal port As Integer)
Try            
Dim regkey1 As RegistryKey
regkey1 = Registry.CurrentUser.CreateSubKey("Software\Microsoft\Windows\CurrentVersion\Internet Settings", True)
regkey1.SetValue("ProxyServer", ServerName + ":" + port.ToString(), RegistryValueKind.Unknown)
regkey1.SetValue("ProxyEnable", True, RegistryValueKind.DWord)   
regkey1.Close()
Catch ex As Exception
End Try
End Sub
于 2012-08-15T08:14:58.637 回答