package main
import (
"bufio"
"fmt"
"os"
)
// 对已经存在的文件,追加内容
func main() {
filePath := "./file/wordtest2.txt"
file, err := os.OpenFile(filePath, os.O_WRONLY|os.O_APPEND, 0666)
if err != nil {
fmt.Println("open file err=%v\n", err)
return
}
//及时关闭file指针
defer file.Close()
str := "Humans, I want the clear,pollution-free water!\r\n"
//使用带缓存的*Writer
writer := bufio.NewWriter(file)
for i := 0; i < 10; i++ {
writer.WriteString(str)
}
writer.Flush()
}
7.把原来的内容读取出来,再往文件追加几句话
Go复制代码
package main
//把原来的内容读取出来,追加几句话
import (
"bufio"
"fmt"
"io"
"os"
)
// 对已经存在的文件,追加内容
func main() {
filePath := "./file/wordtest2.txt"
file, err := os.OpenFile(filePath, os.O_RDWR|os.O_APPEND, 0666)
if err != nil {
fmt.Println("open file err=%v\n", err)
return
}
//及时关闭file指针
defer file.Close()
//先读取原来文件的内容,显示在终端
reader := bufio.NewReader(file)
for {
str2, err := reader.ReadString('\n')
//文件末尾
if err == io.EOF {
break
}
fmt.Print(str2)
}
str := "Sweet dolphins, I wish you all peace.\r\n"
//使用带缓存的*Writer
writer := bufio.NewWriter(file)
for i := 0; i < 5; i++ {
writer.WriteString(str)
}
writer.Flush()
}
Go复制代码
终端:
Humans, I want the clear,pollution-free water!
Humans, I want the clear,pollution-free water!
Humans, I want the clear,pollution-free water!
Humans, I want the clear,pollution-free water!
Humans, I want the clear,pollution-free water!
Humans, I want the clear,pollution-free water!
Humans, I want the clear,pollution-free water!
Humans, I want the clear,pollution-free water!
文件:
Humans, I want the clear,pollution-free water!
Humans, I want the clear,pollution-free water!
Humans, I want the clear,pollution-free water!
Humans, I want the clear,pollution-free water!
Humans, I want the clear,pollution-free water!
Humans, I want the clear,pollution-free water!
Humans, I want the clear,pollution-free water!
Humans, I want the clear,pollution-free water!
Humans, I want the clear,pollution-free water!
Humans, I want the clear,pollution-free water!
Sweet dolphins, I wish you all peace.
Sweet dolphins, I wish you all peace.
Sweet dolphins, I wish you all peace.
Sweet dolphins, I wish you all peace.
Sweet dolphins, I wish you all peace.
word1.txt:
When spring comes, all the seeds begin to burgeon.
word2.txt:
People wait in the lounge for boarding.
运行结果:
People wait in the lounge for boarding.When spring comes, all the seeds begin to burgeon.