为了账号安全,请及时绑定邮箱和手机立即绑定

如何使用 exec.Command() 打开 Chrome 窗口?

如何使用 exec.Command() 打开 Chrome 窗口?

Go
小唯快跑啊 2023-06-19 15:55:52
我想编写一个 Go 程序来打开一个 Chrome 窗口,并将 URL 作为参数传递给它。所以我写了这样的东西。package mainimport "os"  import "os/exec"  import "strings"  func main() {      args := "--app=" + strings.Join(os.Args\[1:\], "")      exec.Command("\\"C:\\\\Program Files (x86)\\\\Google\\\\Chrome Dev\\\\Application\\\\chrome.exe\\"", args).Start()  }但是当我运行程序时go run ".\abc.go" "https://google.com",什么也没有发生。我exec.Command("cmd", "\\C", "start", "\"C:\\Program Files (x86)\\Google\\Chrome Dev\\Application\\chrome.exe\"", args).Start()也试过但没有运气。
查看完整描述

1 回答

?
慕容森

TA贡献1853条经验 获得超18个赞

在 Windows 上你可以做


err := exec.Command("cmd", "/C", "start", "chrome.exe").Run()

if err != nil {

    log.Println(err)

}


查看完整回答
反对 回复 2023-06-19
  • 1 回答
  • 0 关注
  • 156 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信