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


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


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

用法:

func (s *SectionReader) ReadAt(p []byte, off int64) (n int, err error)

在这里,“s”是指向由NewSectionReader方法返回的SectionReader的指针,“p”是指定字节长度的缓冲区,而“off”是int64类型的偏移量,从此位置开始读取。

返回值:它返回从指定长度的指定缓冲区以及偏移量返回的内容的字节数,并且还返回错误(如果有),但如果未发生错误,则返回“nil”。

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



范例1:

// Golang program to illustrate the usage of 
// io.SectionReader.ReadAt() 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\n") 
  
    // Calling NewSectionReader method with its parameters 
    r:= io.NewSectionReader(reader, 6, 12) 
  
    // Defining buffer using make keyword 
    buf:= make([]byte, 4) 
  
    // Calling ReadAt method with its parameters 
    n, err:= r.ReadAt(buf, 2) 
  
    // 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:Geek
n:4

在上面的示例中,首先,从NewSectionReader()返回内容,然后从ReadAt()方法中的给定偏移读取该内容,直到缓冲区中声明的字节数为止。然后,返回结果内容的字节数作为此处的输出。此外,上面缓冲区的内容只有4个字节,因此,返回“4”,并且在读取陈述的内容时没有抛出错误,因此错误是“nil”。

范例2:

// Golang program to illustrate the usage of 
// io.SectionReader.ReadAt() 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("Computer Science!") 
  
    // Calling NewSectionReader method with its parameters 
    r:= io.NewSectionReader(reader, 6, 12) 
  
    // Defining buffer using make keyword 
    buf:= make([]byte, 10) 
  
    // Calling ReadAt method with its parameters 
    n, err:= r.ReadAt(buf, 2) 
  
    // 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/sandbox798260752/prog.go:31 +0x263

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




相关用法


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