dongpei2835 2017-02-14 13:04
浏览 2177
已采纳

使用Golang检查网址是否可访问

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.

  • 写回答

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)
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?