golang http

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

1 package main

2

3 import(

4 "fmt"

5 "net/http"

6 "io/IoUtil"

7 )

8 func main(){

9

10 response,_:=http.Get("www.//127.0.0.1.com")

11 defer response.Body.Close()

12 body,_:=IoUtil.ReadAll(response.Body)

13 fmt.Println(string(body))

14

15 if response.StatusCode == 200 {

16 fmt.Println("ok")

17

18 }else{

19 fmt.Println("error")

20

21 }

22 }

原文链接:https://www.f2er.com/go/191091.html

猜你在找的Go相关文章