内容简介:ServerClient
Server
package main
import (
"net/http"
"os"
"io"
)
func main() {
http.HandleFunc("/",handle)
http.ListenAndServe("127.0.0.1:8005",nil)
}
func handle(w http.ResponseWriter,r *http.Request) {
url:=r.URL.String()
fp,err:=os.Open("/Users/zmx/go/180726/src/main"+url)
if err!=nil {
w.Write([]byte(err.Error()))
return
}
defer fp.Close()
buf:=make([]byte,4096)
for {
n,err:=fp.Read(buf)
if err==io.EOF {
break
}
w.Write(buf[:n])
}
}
Client
package main
import (
"net/http"
"fmt"
"io"
)
func main() {
resp,err:=http.Get("http://127.0.0.1:8005/index.go")
if err!=nil {
fmt.Print(err)
return
}
defer resp.Body.Close()
fmt.Println(resp.Status)
fmt.Println(resp.StatusCode)
fmt.Println(resp.Body)
fmt.Println(resp.Header)
buf:=make([]byte,4096)
for {
n,err:=resp.Body.Read(buf)
fmt.Print(string(buf[:n]))
if err!=nil {
if err==io.EOF {
break
} else {
fmt.Print(err)
}
}
}
}
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Perl语言编程
克里斯蒂安森 (Tom Christiansen) (作者)、Brian D Foy (作者)、Larry Wall (作者)、Jon Orwant (作者) / 苏金国 (译者)、吴爽 (译者) / 中国电力出版社 / 2014-9-1 / 148
从1991年第一版问世以来,《Perl语言编程》很快成为无可争议的Perl宝典,如今仍是这种高实用性语言的权威指南。Perl最初只是作为一个功能强大的文本处理工具,不过很快发展成为一种通用的编程语言,可以帮助成千上万的程序员、系统管理员,以及像你一样的技术爱好者轻松完成工作。 人们早已经翘首以待这本“大骆驼书”的更新,如今终于得偿所愿。在这一版中,三位颇有声望的Perl作者讲述了这种语言当前......一起来看看 《Perl语言编程》 这本书的介绍吧!