我想打开一个网络浏览器:
c, err := exec.Command("http://localhost:4001").Output()
if err != nil {
fmt.Printf("ERROR: %v, %v\n",err,c)
} else {
fmt.Printf("OK:%v\n",c)
}
我得到了错误
ERROR: exec: "http://localhost:4001": file does not exist
编辑:当你这样做时,我想要实现的与 Windows 和 C# 中的相同:
Process.Start("http://localhost:4001")
使用它,您的默认浏览器的新实例将启动并显示 URL