I want to create a simple script that checks if a certain hostname:port is running. I only want to get a bool response if that URL is live, but I'm not sure if there's a straightforward way of doing it.
使用Golang检查网址是否可访问
- 写回答
- 好问题 0 提建议
- 关注问题
- 邀请回答
-
2条回答 默认 最新
dpyln64620 2017-02-14 13:13关注If you only want see if a URL is reachable you could use net.DialTimeout. Like this:
timeout := time.Duration(1 * time.Second) conn, err := net.DialTimeout("tcp","mysyte:myport", timeout) if err != nil { log.Println("Site unreachable, error: ", err) }本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 无用评论 打赏 举报