golang 获取ip代码

前端之家收集整理的这篇文章主要介绍了golang 获取ip代码前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
packagemain

import(
"fmt"
"net"
"strings"
)

funcmain(){
conn,err:=net.Dial("udp","google.com:80")
iferr!=nil{
fmt.Println(err.Error())
return
}
deferconn.Close()
fmt.Println(strings.Split(conn.LocalAddr().String(),":")[0])
}
原文链接:https://www.f2er.com/go/190607.html

猜你在找的Go相关文章