如何打开特定的 URL
How to open a specific URL
我想用
打开一个url
Process.Start("https://www.youtube.com/watch?v=8_oOES_uKPI");
当我 运行 我的代码出现以下错误:
System.ComponentModel.Win32Exception: 'An error occurred trying to
start process 'https://www.youtube.com/watch?v=8_oOES_uKPI' with
working directory
'C:\Users('_')\source\repos\messingAROUND\messingAROUND\bin\Debug\net6.0'.
The system cannot find the file specified.'
我做错了什么?
Process.Start("fileName","arguments")
在我们的例子中,假设您安装了 google chrome,因此您应该将“fileName”替换为 chrome.exe,将“arguments”替换为您的 url 例如 "google.com" 等等
所以改变下面的解决方案
Process.Start("chrome.exe","google.com")
默认浏览器
Process.Start("rundll32", "url.dll,FileProtocolHandler https://www.google.com");
谢谢,玩得开心。
我想用
打开一个urlProcess.Start("https://www.youtube.com/watch?v=8_oOES_uKPI");
当我 运行 我的代码出现以下错误:
System.ComponentModel.Win32Exception: 'An error occurred trying to start process 'https://www.youtube.com/watch?v=8_oOES_uKPI' with working directory 'C:\Users('_')\source\repos\messingAROUND\messingAROUND\bin\Debug\net6.0'. The system cannot find the file specified.'
我做错了什么?
Process.Start("fileName","arguments")
在我们的例子中,假设您安装了 google chrome,因此您应该将“fileName”替换为 chrome.exe,将“arguments”替换为您的 url 例如 "google.com" 等等
所以改变下面的解决方案
Process.Start("chrome.exe","google.com")
默认浏览器
Process.Start("rundll32", "url.dll,FileProtocolHandler https://www.google.com");
谢谢,玩得开心。