通过控制台应用程序打开具有特定URL的浏览器

时间:2013-02-20 14:50:40

标签: windows url console

我正在Visual Studio中进行控制台应用程序,但是我有一点问题。 如果我想在按下任何键时打开带有指定URL的浏览器,我该怎么办?

由于

2 个答案:

答案 0 :(得分:6)

使用ProcessStartInfo类实例来设置用于启动进程的值。

这样的事情:

using System;
using System.Diagnostics;

namespace ConsoleApplication2
{
    class Program
    {
        static void Main(string[] args)
        {
            var psi = new ProcessStartInfo("iexplore.exe");
            psi.Arguments = "http://www.google.com/";
            Process.Start(psi);
        }
    }
}

答案 1 :(得分:4)

如果您还想涵盖.Net Core应用程序。感谢 Brock Allen

https://brockallen.com/2016/09/24/process-start-for-urls-on-net-core/

public static void OpenBrowser(string url)
{
    try
    {
        Process.Start(url);
    }
    catch
    {
        // hack because of this: https://github.com/dotnet/corefx/issues/10361
        if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
        {
            url = url.Replace("&", "^&");
            Process.Start(new ProcessStartInfo("cmd", $"/c start {url}") { CreateNoWindow = true });
        }
        else if (RuntimeInformation.IsOSPlatform(OSPlatform.Linux))
        {
            Process.Start("xdg-open", url);
        }
        else if (RuntimeInformation.IsOSPlatform(OSPlatform.OSX))
        {
            Process.Start("open", url);
        }
        else
        {
            throw;
        }
    }
}