C#-调用浏览器打开网页

2023-03-03 19:00:07 浏览数 (1)

浏览量 1

使用场景,应用程序和第三方交互,需要点击按钮之后直接跳转到网页。

使用默认浏览器打开

在按钮的点击事件中加跳转的代码,即可实现,需要添加using System.Diagnostics

代码语言:javascript复制
//使用默认浏览器打开
string url = "https://www.codehello.net";
Process.Start(url);

使用指定浏览器打开

要使用指定的浏览器打开,我们首先要获取到浏览器运行程序的路径,可以将浏览器地址写入配置文件方便获取,或者通过读取注册表的方式进行获取,一般我们采用后者。

以chrome.exe为例,注册表中获取安装位置可以使用HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionApp Pathschrome.exe

代码语言:javascript复制
//读取注册表
RegistryKey registryKey = Registry.LocalMachine.OpenSubKey(@"SOFTWAREMicrosoftWindowsCurrentVersionApp Pathschrome.exe");
if (registryKey != null) 
{
    string exePath = (string)registryKey.GetValue("");
    if (!string.IsNullOrEmpty(exePath) && File.Exists(exePath)) 
    {
        Process.Start(exePath,url);
    }
}

0 人点赞