📜  Golang 中的 io.NewSectionReader()函数示例

📅  最后修改于: 2021-10-24 13:18:33             🧑  作者: Mango

在 Go 语言中, io包为 I/O 原语提供基本接口。它的主要工作是封装这种原语之王的持续实现。 Go 语言中的NewSectionReader()函数用于返回一个SectionReader ,它从指定的读取器“r”读取,该读取器从指定的偏移量“off”开始并以 EOF 终止,即在给定的“n”个数字之后的文件结尾字节。而且,这个函数是在io包下定义的。在这里,您需要导入“io”包才能使用这些功能。

句法:

func NewSectionReader(r ReaderAt, off int64, n int64) *SectionReader

这里,“r”是读取内容的读取器,“off”是指定的从内容读取开始的偏移量,“n”是读取内容之前的字节数。

返回值:它返回一个“SectionReader”,它从指定的读取器“r”中读取,该读取器从指定的偏移量“off”开始并以 EOF 结束,即在给定的“n”字节数之后的文件结尾。

下面的例子说明了上述方法的使用:

示例 1:

// Golang program to illustrate the usage of
// io.NewSectionReader() function
  
// Including main package
package main
  
// Importing fmt, io, strings, and os
import (
    "fmt"
    "io"
    "os"
    "strings"
)
  
// Calling main
func main() {
  
    // Defining reader using NewReader method
    reader := strings.NewReader("Geeks\n")
  
    // Calling NewSectionReader method with its parameters
    r := io.NewSectionReader(reader, 3, 5)
  
    // Calling Copy method with its parameters
    Reader, err := io.Copy(os.Stdout, r)
  
    // If error is not nil then panics
    if err != nil {
        panic(err)
    }
  
    // Prints output
    fmt.Printf("n: %v\n", Reader)
}

输出:

ks
n: 3

在上面的例子中,Copy() 方法用于返回输出,而字符串的NewReader() 方法用于从要读取的内容写入的地方。

示例 2:

// Golang program to illustrate the usage of
// io.NewSectionReader() function
  
// Including main package
package main
  
// Importing fmt, io, strings, and os
import (
    "fmt"
    "io"
    "os"
    "strings"
)
  
// Calling main
func main() {
  
    // Defining reader using NewReader method
    reader := strings.NewReader("GeeksforGeeks\nis\na\nCS-Portal.\n")
  
    // Calling NewSectionReader method with its parameters
    r := io.NewSectionReader(reader, 7, 40)
  
    // Calling Copy method with its parameters
    Reader, err := io.Copy(os.Stdout, r)
  
    // If error is not nil then panics
    if err != nil {
        panic(err)
    }
  
    // Prints output
    fmt.Printf("n: %v\n", Reader)
}

输出:

rGeeks
is
a
CS-Portal.
n: 23

这里,内容从偏移量“7”开始,在字节数达到“40”后终止。但是在此处返回的输出中,复制的内容为“23”字节,因此“n”为 23。