我在文本(link.txt)文件中保存了一些网址&一些代理(proxy.txt)在另一个文本文件中。
现在我想为每个网址使用不同的代理。
像:
这是我的代码,但我不知道如何为每个网址使用不同的代理(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();
}
答案 0 :(得分: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