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


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


在Go语言中,io软件包为I /O原语提供基本接口。它的主要工作是封装此类原始之王的正在进行的实现。 Go语言中的SectionReader.Read()函数用于返回NewSectionReader方法读取的字节数。此方法将缓冲区作为其参数。而且,此函数在io包下定义。在这里,您需要导入“io”包才能使用这些函数。

用法:

func (s *SectionReader) Read(p []byte) (n int, err error)

在这里,“s”是指向由NewSectionReader方法返回的SectionReader的指针,而“p”是指定字节长度的缓冲区。

返回值:它返回从指定长度的指定缓冲区返回的内容的字节数,并且还返回错误(如果没有错误),然后返回“nil”。

以下示例说明了上述方法的使用:



范例1:

// Golang program to illustrate the usage of 
// io.SectionReader.Read() function 
  
// Including main package 
package main 
  
// Importing fmt, io, and strings 
import ( 
    "fmt"
    "io"
    "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, 2, 4) 
  
    // Defining buffer using make keyword 
    buf:= make([]byte, 3) 
  
    // Calling Read method with its parameter 
    n, err:= r.Read(buf) 
  
    // If error is not nil then panics 
    if err != nil { 
        panic(err) 
    } 
  
    // Prints output 
    fmt.Printf("Content in buffer:%s\n", buf) 
    fmt.Printf("n:%v\n", n) 
}

输出:

Content in buffer:eks
n:3

在上面的示例中,缓冲区的内容只有三个字节,因此,返回“3”,并且在读取陈述的内容时没有抛出错误,因此错误为“nil”。

范例2:

// Golang program to illustrate the usage of 
// io.SectionReader.Read() function 
  
// Including main package 
package main 
  
// Importing fmt, io, and strings 
import ( 
    "fmt"
    "io"
    "strings"
) 
  
// Calling main 
func main() { 
  
    // Defining reader using NewReader method 
    reader:= strings.NewReader("GeeksforGeeks\nis\na\nCS-Portal.") 
  
    // Calling NewSectionReader method with its parameters 
    r:= io.NewSectionReader(reader, 6, 34) 
  
    // Defining buffer using make keyword 
    buf:= make([]byte, 25) 
  
    // Calling Read method with its parameter 
    n, err:= r.Read(buf) 
  
    // If error is not nil then panics 
    if err != nil { 
        panic(err) 
    } 
  
    // Prints output 
    fmt.Printf("Content in buffer:%s\n", buf) 
    fmt.Printf("n:%v\n", n) 
}

输出:

panic:EOF

goroutine 1 [running]:
main.main()
    /tmp/sandbox125171693/prog.go:31 +0x25a

此处,以上代码中使用的缓冲区中的内容的字节数少于说明的字节数,因此会引发EOF错误。




相关用法


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