码迷,mamicode.com
首页 > Windows程序 > 详细

golang windows无GUI调用浏览器

时间:2021-01-05 10:41:40      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:browser   imp   ide   class   com   specified   sys   ecif   spro   


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()
}
 

 

golang windows无GUI调用浏览器

标签:browser   imp   ide   class   com   specified   sys   ecif   spro   

原文地址:https://www.cnblogs.com/linzenews/p/14219014.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!