码迷,mamicode.com
首页 > 编程语言 > 详细

GO语言基础之net/http

时间:2020-04-26 20:55:12      阅读:66      评论:0      收藏:0      [点我收藏+]

标签:fun   led   ack   基础   response   pre   ring   import   http   

内置包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

标签:fun   led   ack   基础   response   pre   ring   import   http   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!