[csharp]
using System.Text.RegularExpressions;
using Microsoft.Win32;
RegistryKey key = Registry.ClassesRoot.OpenSubKey(@"http\shell\open\command\");
string s = key.GetValue("").ToString();
Regex reg = new Regex("\"([^\"]+)\"");
MatchCollection matchs = reg.Matches(s);
string filename="";
if (matchs.Count > 0) www.2cto.com
{
filename = matchs[0].Groups[1].Value;
System.Diagnostics.Process.Start(filename, AppUtils.configSetting.WebUri);
}
通過注冊表取得默認浏覽器的路徑,然後用進程打開即可。
作者:nnsword