golang windows无GUI调用浏览器

时间:2021-01-05 10:41:40   收藏:0   阅读:0

package main

import (
"os/exec"
"syscall"
)

// open opens the specified URL in the default browser of the user.

func main() {
// GUI
cmd := exec.Command("cmd", "/c", "start", "https://tech.mojotv.cn")
cmd.SysProcAttr = &syscall.SysProcAttr{HideWindow: true}
cmd.Start()
}
 

 

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!