您好,登錄后才能下訂單哦!
使用golang語言去讀取一個文件默認會有多種方式,這里主要介紹以下幾種。
使用ioutil直接讀取
需要引入io/ioutil包,該包默認擁有以下函數(shù)供用戶調(diào)用。
func NopCloser(r io.Reader) io.ReadCloser
func ReadAll(r io.Reader) ([]byte, error)
func ReadDir(dirname string) ([]os.FileInfo, error)
func ReadFile(filename string) ([]byte, error)
func TempDir(dir, prefix string) (name string, err error)
func TempFile(dir, prefix string) (f *os.File, err error)
func WriteFile(filename string, data []byte, perm os.FileMode) error
//從一個io.Reader類型中讀取內(nèi)容直到返回錯誤或者EOF時返回讀取的數(shù)據(jù),當err == nil時,數(shù)據(jù)成功讀取到[]byte中
//ReadAll函數(shù)被定義為從源中讀取數(shù)據(jù)直到EOF,它是不會去從返回數(shù)據(jù)中去判斷EOF來作為讀取成功的依據(jù)
func ReadAll(r io.Reader) ([]byte, error)
//讀取一個目錄,并返回一個當前目錄下的文件對象列表和錯誤信息
func ReadDir(dirname string) ([]os.FileInfo, error)
//讀取文件內(nèi)容,并返回[]byte數(shù)據(jù)和錯誤信息。err == nil時,讀取成功
func ReadFile(filename string) ([]byte, error)
讀取文件示例:
package main
import (
"fmt"
"io/ioutil"
"strings"
)
func main() {
Ioutil("mytestfile.txt")
}
func Ioutil(name string) {
if contents,err := ioutil.ReadFile(name);err == nil {
//因為contents是[]byte類型,直接轉換成string類型后會多一行空格,需要使用strings.Replace替換換行符
result := strings.Replace(string(contents),"\n","",1)
fmt.Println(result)
}
}
$ go run readfile.go
xxbandy.github.io @by Andy_xu
借助os.Open
進行讀取文件
由于os.Open是打開一個文件并返回一個文件對象,因此其實可以結合ioutil.ReadAll(r io.Reader)來進行讀取。 io.Reader其實是一個包含Read方法的接口類型,而文件對象本身是實現(xiàn)了了Read方法的。
我們先來看下os.Open家族的相關函數(shù)
//打開一個需要被讀取的文件,如果成功讀取,返回的文件對象將可用被讀取,該函數(shù)默認的權限為O_RDONLY,也就是只對文件有只讀權限。如果有錯誤,將返回*PathError類型
func Open(name string) (*File, error)
//大部分用戶會選擇該函數(shù)來代替Open or Create函數(shù)。該函數(shù)主要用來指定參數(shù)(os.O_APPEND|os.O_CREATE|os.O_WRONLY)以及文件權限(0666)來打開文件,如果打開成功返回的文件對象將被用作I/O操作
func OpenFile(name string, flag int, perm FileMode) (*File, error)
使用os.Open家族函數(shù)和ioutil.ReadAll()讀取文件示例:
func OsIoutil(name string) {
if fileObj,err := os.Open(name);err == nil {
//if fileObj,err := os.OpenFile(name,os.O_RDONLY,0644); err == nil {
defer fileObj.Close()
if contents,err := ioutil.ReadAll(fileObj); err == nil {
result := strings.Replace(string(contents),"\n","",1)
fmt.Println("Use os.Open family functions and ioutil.ReadAll to read a file contents:",result)
}
}
}
# 在main函數(shù)中調(diào)用OsIoutil(name)函數(shù)就可以讀取文件內(nèi)容了
然而上述方式會比較繁瑣一些,因為使用了os的同時借助了ioutil,但是在讀取大文件的時候還是比較有優(yōu)勢的。不過讀取小文件可以直接使用文件對象的一些方法。
不論是上邊說的os.Open還是os.OpenFile他們最終都返回了一個*File文件對象,而該文件對象默認是有很多方法的,其中讀取文件的方法有如下幾種:
//從文件對象中讀取長度為b的字節(jié),返回當前讀到的字節(jié)數(shù)以及錯誤信息。因此使用該方法需要先初始化一個符合內(nèi)容大小的空的字節(jié)列表。讀取到文件的末尾時,該方法返回0,io.EOF
func (f *File) Read(b []byte) (n int, err error)
//從文件的off偏移量開始讀取長度為b的字節(jié)。返回讀取到字節(jié)數(shù)以及錯誤信息。當讀取到的字節(jié)數(shù)n小于想要讀取字節(jié)的長度len(b)的時候,該方法將返回非空的error。當讀到文件末尾時,err返回io.EOF
func (f *File) ReadAt(b []byte, off int64) (n int, err error)
使用文件對象的Read方法讀取:
func FileRead(name string) {
if fileObj,err := os.Open(name);err == nil {
defer fileObj.Close()
//在定義空的byte列表時盡量大一些,否則這種方式讀取內(nèi)容可能造成文件讀取不完整
buf := make([]byte, 1024)
if n,err := fileObj.Read(buf);err == nil {
fmt.Println("The number of bytes read:"+strconv.Itoa(n),"Buf length:"+strconv.Itoa(len(buf)))
result := strings.Replace(string(buf),"\n","",1)
fmt.Println("Use os.Open and File's Read method to read a file:",result)
}
}
}
bufio包實現(xiàn)了緩存IO,它本身包裝了io.Reader和io.Writer對象,創(chuàng)建了另外的Reader和Writer對象,不過該種方式是帶有緩存的,因此對于文本I/O來說,該包是提供了一些便利的。
先看下bufio模塊下的相關的Reader函數(shù)方法:
//首先定義了一個用來緩沖io.Reader對象的結構體,同時該結構體擁有以下相關的方法
type Reader struct {
}
//NewReader函數(shù)用來返回一個默認大小buffer的Reader對象(默認大小好像是4096) 等同于NewReaderSize(rd,4096)
func NewReader(rd io.Reader) *Reader
//該函數(shù)返回一個指定大小buffer(size最小為16)的Reader對象,如果 io.Reader參數(shù)已經(jīng)是一個足夠大的Reader,它將返回該Reader
func NewReaderSize(rd io.Reader, size int) *Reader
//該方法返回從當前buffer中能被讀到的字節(jié)數(shù)
func (b *Reader) Buffered() int
//Discard方法跳過后續(xù)的 n 個字節(jié)的數(shù)據(jù),返回跳過的字節(jié)數(shù)。如果0 <= n <= b.Buffered(),該方法將不會從io.Reader中成功讀取數(shù)據(jù)。
func (b *Reader) Discard(n int) (discarded int, err error)
//Peekf方法返回緩存的一個切片,該切片只包含緩存中的前n個字節(jié)的數(shù)據(jù)
func (b *Reader) Peek(n int) ([]byte, error)
//把Reader緩存對象中的數(shù)據(jù)讀入到[]byte類型的p中,并返回讀取的字節(jié)數(shù)。讀取成功,err將返回空值
func (b *Reader) Read(p []byte) (n int, err error)
//返回單個字節(jié),如果沒有數(shù)據(jù)返回err
func (b *Reader) ReadByte() (byte, error)
//該方法在b中讀取delimz之前的所有數(shù)據(jù),返回的切片是已讀出的數(shù)據(jù)的引用,切片中的數(shù)據(jù)在下一次的讀取操作之前是有效的。如果未找到delim,將返回查找結果并返回nil空值。因為緩存的數(shù)據(jù)可能被下一次的讀寫操作修改,因此一般使用ReadBytes或者ReadString,他們返回的都是數(shù)據(jù)拷貝
func (b *Reader) ReadSlice(delim byte) (line []byte, err error)
//功能同ReadSlice,返回數(shù)據(jù)的拷貝
func (b *Reader) ReadBytes(delim byte) ([]byte, error)
//功能同ReadBytes,返回字符串
func (b *Reader) ReadString(delim byte) (string, error)
//該方法是一個低水平的讀取方式,一般建議使用ReadBytes('\n') 或 ReadString('\n'),或者使用一個 Scanner來代替。ReadLine 通過調(diào)用 ReadSlice 方法實現(xiàn),返回的也是緩存的切片,用于讀取一行數(shù)據(jù),不包括行尾標記(\n 或 \r\n)
func (b *Reader) ReadLine() (line []byte, isPrefix bool, err error)
//讀取單個UTF-8字符并返回一個rune和字節(jié)大小
func (b *Reader) ReadRune() (r rune, size int, err error)
示例如下:
func BufioRead(name string) {
if fileObj,err := os.Open(name);err == nil {
defer fileObj.Close()
//一個文件對象本身是實現(xiàn)了io.Reader的 使用bufio.NewReader去初始化一個Reader對象,存在buffer中的,讀取一次就會被清空
reader := bufio.NewReader(fileObj)
//使用ReadString(delim byte)來讀取delim以及之前的數(shù)據(jù)并返回相關的字符串.
if result,err := reader.ReadString(byte('@'));err == nil {
fmt.Println("使用ReadSlince相關方法讀取內(nèi)容:",result)
}
//注意:上述ReadString已經(jīng)將buffer中的數(shù)據(jù)讀取出來了,下面將不會輸出內(nèi)容
//需要注意的是,因為是將文件內(nèi)容讀取到[]byte中,因此需要對大小進行一定的把控
buf := make([]byte,1024)
//讀取Reader對象中的內(nèi)容到[]byte類型的buf中
if n,err := reader.Read(buf); err == nil {
fmt.Println("The number of bytes read:"+strconv.Itoa(n))
//這里的buf是一個[]byte,因此如果需要只輸出內(nèi)容,仍然需要將文件內(nèi)容的換行符替換掉
fmt.Println("Use bufio.NewReader and os.Open read file contents to a []byte:",string(buf))
}
}
}
讀文件所有方式示例:
package main
import (
"fmt"
"io/ioutil"
"strings"
"os"
"strconv"
"bufio"
)
func main() {
Ioutil("mytestfile.txt")
OsIoutil("mytestfile.txt")
FileRead("mytestfile.txt")
BufioRead("mytestfile.txt")
}
func Ioutil(name string) {
if contents,err := ioutil.ReadFile(name);err == nil {
//因為contents是[]byte類型,直接轉換成string類型后會多一行空格,需要使用strings.Replace替換換行符
result := strings.Replace(string(contents),"\n","",1)
fmt.Println("Use ioutil.ReadFile to read a file:",result)
}
}
func OsIoutil(name string) {
if fileObj,err := os.Open(name);err == nil {
//if fileObj,err := os.OpenFile(name,os.O_RDONLY,0644); err == nil {
defer fileObj.Close()
if contents,err := ioutil.ReadAll(fileObj); err == nil {
result := strings.Replace(string(contents),"\n","",1)
fmt.Println("Use os.Open family functions and ioutil.ReadAll to read a file :",result)
}
}
}
func FileRead(name string) {
if fileObj,err := os.Open(name);err == nil {
defer fileObj.Close()
//在定義空的byte列表時盡量大一些,否則這種方式讀取內(nèi)容可能造成文件讀取不完整
buf := make([]byte, 1024)
if n,err := fileObj.Read(buf);err == nil {
fmt.Println("The number of bytes read:"+strconv.Itoa(n),"Buf length:"+strconv.Itoa(len(buf)))
result := strings.Replace(string(buf),"\n","",1)
fmt.Println("Use os.Open and File's Read method to read a file:",result)
}
}
}
func BufioRead(name string) {
if fileObj,err := os.Open(name);err == nil {
defer fileObj.Close()
//一個文件對象本身是實現(xiàn)了io.Reader的 使用bufio.NewReader去初始化一個Reader對象,存在buffer中的,讀取一次就會被清空
reader := bufio.NewReader(fileObj)
//使用ReadString(delim byte)來讀取delim以及之前的數(shù)據(jù)并返回相關的字符串.
if result,err := reader.ReadString(byte('@'));err == nil {
fmt.Println("使用ReadSlince相關方法讀取內(nèi)容:",result)
}
//注意:上述ReadString已經(jīng)將buffer中的數(shù)據(jù)讀取出來了,下面將不會輸出內(nèi)容
//需要注意的是,因為是將文件內(nèi)容讀取到[]byte中,因此需要對大小進行一定的把控
buf := make([]byte,1024)
//讀取Reader對象中的內(nèi)容到[]byte類型的buf中
if n,err := reader.Read(buf); err == nil {
fmt.Println("The number of bytes read:"+strconv.Itoa(n))
//這里的buf是一個[]byte,因此如果需要只輸出內(nèi)容,仍然需要將文件內(nèi)容的換行符替換掉
fmt.Println("Use bufio.NewReader and os.Open read file contents to a []byte:",string(buf))
}
}
}
那么上述幾種方式來讀取文件的方式也支持文件的寫入,相關的方法如下:
// 寫入[]byte類型的data到filename文件中,文件權限為perm
func WriteFile(filename string, data []byte, perm os.FileMode) error
package main
import "io/ioutil"
/*
文件操作
*/
func main() {
s := "你好??!"
x := []byte(s)
WriteFile("1.txt", x)
}
func WriteFile(fileName string, b []byte) {
err := ioutil.WriteFile(fileName, b, 0666)
if err != nil {
println("err", err)
}
}
因為os.Open系列的函數(shù)會打開文件,并返回一個文件對象指針,而該文件對象是一個定義的結構體,擁有一些相關寫入的方法。
文件對象結構體以及相關寫入文件的方法:
//寫入長度為b字節(jié)切片到文件f中,返回寫入字節(jié)號和錯誤信息。當n不等于len(b)時,將返回非空的err
func (f *File) Write(b []byte) (n int, err error)
//在off偏移量出向文件f寫入長度為b的字節(jié)
func (f *File) WriteAt(b []byte, off int64) (n int, err error)
//類似于Write方法,但是寫入內(nèi)容是字符串而不是字節(jié)切片
func (f *File) WriteString(s string) (n int, err error)
注意:使用WriteString()j進行文件寫入發(fā)現(xiàn)經(jīng)常新內(nèi)容寫入時無法正常覆蓋全部新內(nèi)容。(是因為字符串長度不一樣)
示例:
//使用os.OpenFile()相關函數(shù)打開文件對象,并使用文件對象的相關方法進行文件寫入操作
func WriteWithFileWrite(name,content string){
fileObj,err := os.OpenFile(name,os.O_RDWR|os.O_CREATE|os.O_TRUNC,0644)
if err != nil {
fmt.Println("Failed to open the file",err.Error())
os.Exit(2)
}
defer fileObj.Close()
if _,err := fileObj.WriteString(content);err == nil {
fmt.Println("Successful writing to the file with os.OpenFile and *File.WriteString method.",content)
}
contents := []byte(content)
if _,err := fileObj.Write(contents);err == nil {
fmt.Println("Successful writing to thr file with os.OpenFile and *File.Write method.",content)
}
}
注意:使用os.OpenFile(name string, flag int, perm FileMode)打開文件并進行文件內(nèi)容更改,需要注意flag相關的參數(shù)以及含義。
const (
O_RDONLY int = syscall.O_RDONLY // 只讀打開文件和os.Open()同義
O_WRONLY int = syscall.O_WRONLY // 只寫打開文件
O_RDWR int = syscall.O_RDWR // 讀寫方式打開文件
O_APPEND int = syscall.O_APPEND // 當寫的時候使用追加模式到文件末尾
O_CREATE int = syscall.O_CREAT // 如果文件不存在,此案創(chuàng)建
O_EXCL int = syscall.O_EXCL // 和O_CREATE一起使用, 只有當文件不存在時才創(chuàng)建
O_SYNC int = syscall.O_SYNC // 以同步I/O方式打開文件,直接寫入硬盤.
O_TRUNC int = syscall.O_TRUNC // 如果可以的話,當打開文件時先清空文件
)
使用io包中的相關函數(shù)寫入文件
在io包中有一個WriteString()函數(shù),用來將字符串寫入一個Writer對象中。
//將字符串s寫入w(可以是一個[]byte),如果w實現(xiàn)了一個WriteString方法,它可以被直接調(diào)用。否則w.Write會再一次被調(diào)用
func WriteString(w Writer, s string) (n int, err error)
//Writer對象的定義
type Writer interface {
Write(p []byte) (n int, err error)
}
示例:
//使用io.WriteString()函數(shù)進行數(shù)據(jù)的寫入
func WriteWithIo(name,content string) {
fileObj,err := os.OpenFile(name,os.O_RDWR|os.O_CREATE|os.O_APPEND,0644)
if err != nil {
fmt.Println("Failed to open the file",err.Error())
os.Exit(2)
}
if _,err := io.WriteString(fileObj,content);err == nil {
fmt.Println("Successful appending to the file with os.OpenFile and io.WriteString.",content)
}
}
bufio和io包中很多操作都是相似的,唯一不同的地方是bufio提供了一些緩沖的操作,如果對文件I/O操作比較頻繁的,使用bufio還是能增加一些性能的。
在bufio包中,有一個Writer結構體,而其相關的方法也支持一些寫入操作。
//Writer是一個空的結構體,一般需要使用NewWriter或者NewWriterSize來初始化一個結構體對象
type Writer struct {
// contains filtered or unexported fields
}
//NewWriterSize和NewWriter函數(shù)
//返回默認緩沖大小的Writer對象(默認是4096)
func NewWriter(w io.Writer) *Writer
//指定緩沖大小創(chuàng)建一個Writer對象
func NewWriterSize(w io.Writer, size int) *Writer
//Writer對象相關的寫入數(shù)據(jù)的方法
//把p中的內(nèi)容寫入buffer,返回寫入的字節(jié)數(shù)和錯誤信息。如果nn<len(p),返回錯誤信息中會包含為什么寫入的數(shù)據(jù)比較短
func (b *Writer) Write(p []byte) (nn int, err error)
//將buffer中的數(shù)據(jù)寫入 io.Writer
func (b *Writer) Flush() error
//以下三個方法可以直接寫入到文件中
//寫入單個字節(jié)
func (b *Writer) WriteByte(c byte) error
//寫入單個Unicode指針返回寫入字節(jié)數(shù)錯誤信息
func (b *Writer) WriteRune(r rune) (size int, err error)
//寫入字符串并返回寫入字節(jié)數(shù)和錯誤信息
func (b *Writer) WriteString(s string) (int, error)
注意:如果需要再寫入文件時利用緩沖的話只能使用bufio包中的Write方法
示例:
//使用bufio包中Writer對象的相關方法進行數(shù)據(jù)的寫入
func WriteWithBufio(name,content string) {
if fileObj,err := os.OpenFile(name,os.O_RDWR|os.O_CREATE|os.O_APPEND,0644);err == nil {
defer fileObj.Close()
writeObj := bufio.NewWriterSize(fileObj,4096)
//
if _,err := writeObj.WriteString(content);err == nil {
fmt.Println("Successful appending buffer and flush to file with bufio's Writer obj WriteString method",content)
}
//使用Write方法,需要使用Writer對象的Flush方法將buffer中的數(shù)據(jù)刷到磁盤
buf := []byte(content)
if _,err := writeObj.Write(buf);err == nil {
fmt.Println("Successful appending to the buffer with os.OpenFile and bufio's Writer obj Write method.",content)
if err := writeObj.Flush(); err != nil {panic(err)}
fmt.Println("Successful flush the buffer data to file ",content)
}
}
}
寫文件全部示例
package main
import (
"os"
"io"
"fmt"
"io/ioutil"
"bufio"
)
func main() {
name := "testwritefile.txt"
content := "Hello, xxbandy.github.io!\n"
WriteWithIoutil(name,content)
contents := "Hello, xuxuebiao\n"
//清空一次文件并寫入兩行contents
WriteWithFileWrite(name,contents)
WriteWithIo(name,content)
//使用bufio包需要將數(shù)據(jù)先讀到buffer中,然后在flash到磁盤中
WriteWithBufio(name,contents)
}
//使用ioutil.WriteFile方式寫入文件,是將[]byte內(nèi)容寫入文件,如果content字符串中沒有換行符的話,默認就不會有換行符
func WriteWithIoutil(name,content string) {
data := []byte(content)
if ioutil.WriteFile(name,data,0644) == nil {
fmt.Println("寫入文件成功:",content)
}
}
//使用os.OpenFile()相關函數(shù)打開文件對象,并使用文件對象的相關方法進行文件寫入操作
//清空一次文件
func WriteWithFileWrite(name,content string){
fileObj,err := os.OpenFile(name,os.O_RDWR|os.O_CREATE|os.O_TRUNC,0644)
if err != nil {
fmt.Println("Failed to open the file",err.Error())
os.Exit(2)
}
defer fileObj.Close()
if _,err := fileObj.WriteString(content);err == nil {
fmt.Println("Successful writing to the file with os.OpenFile and *File.WriteString method.",content)
}
contents := []byte(content)
if _,err := fileObj.Write(contents);err == nil {
fmt.Println("Successful writing to thr file with os.OpenFile and *File.Write method.",content)
}
}
//使用io.WriteString()函數(shù)進行數(shù)據(jù)的寫入
func WriteWithIo(name,content string) {
fileObj,err := os.OpenFile(name,os.O_RDWR|os.O_CREATE|os.O_APPEND,0644)
if err != nil {
fmt.Println("Failed to open the file",err.Error())
os.Exit(2)
}
if _,err := io.WriteString(fileObj,content);err == nil {
fmt.Println("Successful appending to the file with os.OpenFile and io.WriteString.",content)
}
}
//使用bufio包中Writer對象的相關方法進行數(shù)據(jù)的寫入
func WriteWithBufio(name,content string) {
if fileObj,err := os.OpenFile(name,os.O_RDWR|os.O_CREATE|os.O_APPEND,0644);err == nil {
defer fileObj.Close()
writeObj := bufio.NewWriterSize(fileObj,4096)
//
if _,err := writeObj.WriteString(content);err == nil {
fmt.Println("Successful appending buffer and flush to file with bufio's Writer obj WriteString method",content)
}
//使用Write方法,需要使用Writer對象的Flush方法將buffer中的數(shù)據(jù)刷到磁盤
buf := []byte(content)
if _,err := writeObj.Write(buf);err == nil {
fmt.Println("Successful appending to the buffer with os.OpenFile and bufio's Writer obj Write method.",content)
if err := writeObj.Flush(); err != nil {panic(err)}
fmt.Println("Successful flush the buffer data to file ",content)
}
}
}
package main
import (
"os"
"strings"
"time"
)
/*
文件操作
*/
func main() {
AppendFile("nihao")
}
func AppendFile(str_content string) {
fd, _ := os.OpenFile("a.txt", os.O_RDWR|os.O_CREATE|os.O_APPEND, 0644)
fd_time := time.Now().Format("2006-01-02 15:04:05")
fd_content := strings.Join([]string{"======", fd_time, "=====", str_content, "\n"}, "")
buf := []byte(fd_content)
fd.Write(buf)
fd.Close()
}
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。