首页 > 编程语言 > 详细

GO语言基础之net/http

时间:2020-04-26 21:09:33      阅读:72      评论:0      收藏:0      [点我收藏+]

内置包net/http。

// 服务端
package main import (
"fmt" "net/http" ) // http server func sayHello(w http.ResponseWriter, r *http.Request) { fmt.Fprintln(w, "Hello World!") } func main() { http.HandleFunc("/", sayHello) err := http.ListenAndServe(":8080", nil) if err != nil { fmt.Printf("http server failed, err:%v\n", err) return } }

编译启动之后浏览器输入:127.0.0.1:8080

// 客户端
package main

import (
    "fmt"
    "io/ioutil"
    "net/http"
)

func main() {
    resp, err := http.Get("http://127.0.0.1:8080/")
    if err != nil {
        fmt.Println("get failed, err:", err)
        return
    }
    defer resp.Body.Close()
    body, err := ioutil.ReadAll(resp.Body)
    if err != nil {
        fmt.Println("read from resp.Body failed,err:", err)
        return
    }
    fmt.Print(string(body))
}

 

GO语言基础之net/http

原文:https://www.cnblogs.com/aaronthon/p/12781898.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!