GO语言练习:网络编程 TCP 示例

简介:

1、代码

2、编译及运行


 

1、网络编程 TCP 示例 simplehttp.go 代码

复制代码
 1 package main
 2 
 3 import (
 4     "net"
 5     "os"
 6     "io"
 7     "bytes"
 8     "fmt"
 9 )
10 
11 func main() {
12     if len(os.Args) != 2 {
13         fmt.Fprintf(os.Stderr, "Usage : %s host:port", os.Args[0])
14         os.Exit(1)
15     }
16     service := os.Args[1]
17     conn, err := net.Dial("tcp", service)
18     checkError(err)
19 
20     _, err = conn.Write([]byte("HEAD / HTTPD/1.0\r\n\r\n"))
21     checkError(err)
22 
23     result, err := readFully(conn)
24     checkError(err)
25 
26     fmt.Println(string(result))
27 
28     os.Exit(0)
29 }
30 
31 func checkError(err error) {
32     if err != nil {
33         fmt.Fprintf(os.Stderr, "Fatal error : %s\n", err.Error())
34         os.Exit(1)
35     }
36 }
37 
38 func readFully(conn net.Conn) ([]byte, error) {
39     defer conn.Close()
40 
41     result := bytes.NewBuffer(nil)
42     var buf [512]byte
43     for {
44         n, err := conn.Read(buf[0:])
45         result.Write(buf[0:n])
46         if err != nil {
47             if err == io.EOF {
48                 fmt.Println("over...")
49                 break
50             }
51             return nil, err
52         }
53     }
54 
55     return result.Bytes(), nil
56 }
复制代码

2、编译及运行

  2.1)编译

$ go build simplehttp.go 
$ ls
simplehttp  simplehttp.go

  2.2)运行

复制代码
$ ./simplehttp www.xin3e.com:80
over...
HTTP/1.1 302 Found
Date: Mon, 20 Jul 2015 15:18:13 GMT
Server: Apache/2.2.22 (Ubuntu)
X-Powered-By: PHP/5.3.10-1ubuntu3.19
Location: web/index.php
Vary: Accept-Encoding
Connection: close
Content-Type: text/html
复制代码

 


本文转自郝峰波博客园博客,原文链接:http://www.cnblogs.com/fengbohello/p/4663077.html,如需转载请自行联系原作者


相关文章
|
15天前
|
安全 网络协议 Go
Go语言网络编程
【10月更文挑战第28天】Go语言网络编程
109 65
|
4天前
|
JSON 安全 Go
Go语言中使用JWT鉴权、Token刷新完整示例,拿去直接用!
本文介绍了如何在 Go 语言中使用 Gin 框架实现 JWT 用户认证和安全保护。JWT(JSON Web Token)是一种轻量、高效的认证与授权解决方案,特别适合微服务架构。文章详细讲解了 JWT 的基本概念、结构以及如何在 Gin 中生成、解析和刷新 JWT。通过示例代码,展示了如何在实际项目中应用 JWT,确保用户身份验证和数据安全。完整代码可在 GitHub 仓库中查看。
17 1
|
15天前
|
网络协议 安全 Go
Go语言进行网络编程可以通过**使用TCP/IP协议栈、并发模型、HTTP协议等**方式
【10月更文挑战第28天】Go语言进行网络编程可以通过**使用TCP/IP协议栈、并发模型、HTTP协议等**方式
43 13
|
15天前
|
网络协议 安全 Go
Go语言的网络编程基础
【10月更文挑战第28天】Go语言的网络编程基础
34 8
|
16天前
|
缓存 网络协议 Unix
Go语言网络编程技巧
【10月更文挑战第27天】Go语言网络编程技巧
39 8
|
16天前
|
网络协议 Go
Go语言网络编程的实例
【10月更文挑战第27天】Go语言网络编程的实例
17 7
|
6天前
|
存储 JSON 监控
Viper,一个Go语言配置管理神器!
Viper 是一个功能强大的 Go 语言配置管理库,支持从多种来源读取配置,包括文件、环境变量、远程配置中心等。本文详细介绍了 Viper 的核心特性和使用方法,包括从本地 YAML 文件和 Consul 远程配置中心读取配置的示例。Viper 的多来源配置、动态配置和轻松集成特性使其成为管理复杂应用配置的理想选择。
23 2
|
网络协议 Go 移动开发
go tcp使用
TCP clientThere have been countless times during penetration tests that I've neededto whip up a TCP client to test for services, send garbage data, fuzz, orany number of other tasks.
789 0
|
4天前
|
Go 索引
go语言中的循环语句
【11月更文挑战第4天】
13 2
|
4天前
|
Go C++
go语言中的条件语句
【11月更文挑战第4天】
15 2