-
Notifications
You must be signed in to change notification settings - Fork 0
/
07、通讯
110 lines (80 loc) · 2.17 KB
/
07、通讯
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
本章涉及 文件的读取、写入,外部命令的调用,tcp/udp 连接 的使用
在 Go 语言中, IO 的核心接口是 io.Reader 和 io.Writer
但凡是实现了 io.Reader 和 io.Writer 接口的类型,都可以被标准库所使用
EG1.【无缓冲读取文件】
package main
import (
"os" // os 包提供了平台无关的系统功能调用接口
)
func main() {
f, e := os.Open("text.txt") // 打开文件,返回一个 *os.File 以及可能产生的错误 err
// os.File 实现了 io.Reader 和 io.Writer 接口
defer f.Close() // 无论如何,都在 main 函数返回时,关闭文件
if e != nil { // 若打开时出错,则返回这个错误
panic(e)
}
buf := make([]byte, 64) // 指定单次读取文件的最大字节数
for {
n, _ := f.Read(buf) // 使用 Read 方法,向 buf 中填充数据,并返回读取到的字节数
if n == 0 { // 若某次读取完全没有读取到字节
break // 则停止读取循环
}
os.Stdout.Write(buf[:n]) // 每次只向 StdOut 输出有数据的字节切片,忽略后续空白切片(最后一次读取,去除空切片)
}
}
EG2.【有缓冲读取文件】
package main
import (
"bufio" // 具有缓冲的 IO 包
"io"
"os"
)
func main() {
f, e := os.Open("text.txt") // 先打开一个文件
defer f.Close()
if e != nil {
panic(e)
}
bf := bufio.NewReader(f) // 接着把 *os.File 包装为 *bufio.Reader
bw := bufio.NewWriter(os.Stdout) // 把 *os.File 包装为 *bufio.Writer
defer bw.Flush() // 函数返回时,把 bw 的数据全部写回 io.Writer 中
buf := make([]byte, 64)
for {
n, e := bf.Read(buf)
if e != io.EOF && e != nil {
panic(e)
}
if n == 0 {
break
}
bw.Write(buf[:n])
}
}
EG3.【调用外部命令】
package main
import (
"os/exec"
)
func main() {
cmd := exec.Command("/bin/ls", "-l")
err := cmd.Run()
if err != nil {
panic(err)
}
}
EG4.【调用外部命令并取得返回值】
package main
import (
"os"
"os/exec"
)
func main() {
cmd := exec.Command("/bin/ls", "-l")
buf, err := cmd.Output()
if err != nil {
panic(err)
}
os.Stdout.Write(buf)
}
EG5.
【跳过本书后面的内容】