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


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


在Go语言中,io软件包为I /O原语提供基本接口。它的主要工作是封装此类原始之王的正在进行的实现。 Go语言中的SectionReader.Seek()函数用于在规定的偏移量和位置的帮助下找到新的偏移量。而且,此函数在io包下定义。在这里,您需要导入“io”包才能使用这些函数。

用法:

func (s *SectionReader) Seek(offset int64, whence int) (int64, error)

在这里,“s”是指向由NewSectionReader方法返回的SectionReader的指针,“offset”的类型为int64,而“whence”的类型为int。

返回值:它借助给定的偏移量加上wherece返回一个新的偏移量,并且如果有的话还返回一个错误。

注意:Seek wherece的三个常量值如下:



  • SeekStart = 0,它相对于指定文件的开头进行搜索。
  • SeekCurrent = 1,它相对于指定文件的最新偏移量进行搜索。
  • SeekEnd = 2,它相对于指定文件的结尾进行搜索。

范例1:

// Golang program to illustrate the usage of 
// io.SectionReader.Seek() 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") 
  
    // Calling NewSectionReader method with its parameters 
    r:= io.NewSectionReader(reader, 1, 4) 
  
    // Calling Seek method with its parameters 
    Newoffset, err:= r.Seek(6, 1) 
  
    // If error is not nil then panics 
    if err != nil { 
        panic(err) 
    } 
  
    // Prints output 
    fmt.Printf("The new offset is:%v\n", Newoffset) 
}

输出:

The new offset is:6

在上面的示例中,Seek whence的值是1,这意味着它是“SeekCurrent”,因此它相对于当前偏移量进行搜索。

范例2:

// Golang program to illustrate the usage of 
// io.SectionReader.Seek() 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") 
  
    // Calling NewSectionReader method with its parameters 
    r:= io.NewSectionReader(reader, 1, 4) 
  
    // Calling Seek method with its parameters 
    Newoffset, err:= r.Seek(6, io.SeekEnd) 
  
    // If error is not nil then panics 
    if err != nil { 
        panic(err) 
    } 
  
    // Prints output 
    fmt.Printf("The new offset is:%v\n", Newoffset) 
}

输出:

The new offset is:10

此处,Seek wherece的值为“SeekEnd”,这意味着它相对于末尾进行搜索。




相关用法


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