当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Golang io.NewSectionReader()用法及代码示例


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

用法:

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

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

返回值:它返回一个从指定的读取器“r”读取的“SectionReader”,该读取器从指定的偏移量“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。




相关用法


注:本文由纯净天空筛选整理自nidhi1352singh大神的英文原创作品 io.NewSectionReader() Function in Golang with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。