package main import ( "fmt" "net" "strconv" ) //用來轉化int爲string type Int int func (i Int)toStr()string { return strconv.FormatInt(int64(i),10) } func testConn(conn net.Conn){ addr := conn.RemoteAddr() fmt.Println(addr) //返回的http消息體 var respBody = "<h1>Hello World<h1>" i := (Int)(len(respBody)) fmt.Println("響應的消息體長度:"+i.toStr()) //返回的http消息頭 var respHeader = "HTTP/1.1 200 OK\n"+ "Content-Type: text/html;charset=ISO-8859-1\n"+ "Content-Length: "+i.toStr() //拼裝http返回的消息 resp := respHeader +"\n\r\n"+ respBody fmt.Println(resp) n, _ := conn.Write([]byte(resp)) fmt.Printf("發送的數據數量:%s\n",(Int)(n).toStr()) } func main() { listen, err := net.Listen("tcp", "127.0.0.1:8888") if err !=nil{ fmt.Println(err) return } defer listen.Close() //延時關閉 listen for{ conn, err := listen.Accept() if err !=nil{ fmt.Println(err) continue } go testConn(conn) } }
轉載地址:https://blog.csdn.net/weixin_37910453/article/details/86679694html