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


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


在Go语言中,io软件包为I /O原语提供基本接口。它的主要工作是封装此类原始之王的正在进行的实现。 Go语言中的Copy()函数用于从指定的src(即源)复制到dst(即目标),直到在src上达到EOF(即文件结尾)或引发错误为止。在此,当WriterTo接口实现src时,则通过调用src.WriteTo(dst)来实现副本。否则,如果dst由ReaderFrom接口实现,则通过调用dst.ReadFrom(src)来实现副本。而且,此函数在io包下定义。在这里,您需要导入“io”包才能使用这些函数。

用法:

func Copy(dst Writer, src Reader) (written int64, err error)

在此,“dst”是目标,“src”是将内容复制到目标的源。
返回值:它返回复制到“dst”的int64类型的字节总数,并且还返回从src复制到dst(如果有)时遇到的第一个错误。如果复制没有错误,则返回“nil”。

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

范例1:



// Golang program to illustrate the usage of 
// io.Copy() function 
  
// Including main package 
package main 
  
// Importing fmt, io, os, and strings 
import ( 
    "fmt"
    "io"
    "os"
    "strings"
) 
  
// Calling main 
func main() { 
  
    // Defining source 
    src:= strings.NewReader("GeeksforGeeks\n") 
  
    // Defining destination using Stdout 
    dst:= os.Stdout 
  
    // Calling Copy method with its parameters 
    bytes, err:= io.Copy(dst, src) 
  
    // If error is not nil then panics 
    if err != nil { 
        panic(err) 
    } 
  
    // Prints output 
    fmt.Printf("The number of bytes are:%d\n", bytes) 
}

输出:

GeeksforGeeks
The number of bytes are:14

范例2:

// Golang program to illustrate the usage of 
// io.Copy() function 
  
// Including main package 
package main 
  
// Importing fmt, io, os, and strings 
import ( 
    "fmt"
    "io"
    "os"
    "strings"
) 
  
// Calling main 
func main() { 
  
    // Defining source 
    src:= strings.NewReader("Nidhi:F\nRahul:M\nNisha:F\n") 
  
    // Defining destination using Stdout 
    dst:= os.Stdout 
  
    // Calling Copy method with its parameters 
    bytes, err:= io.Copy(dst, src) 
  
    // If error is not nil then panics 
    if err != nil { 
        panic(err) 
    } 
  
    // Prints output 
    fmt.Printf("The number of bytes are:%d\n", bytes) 
}

输出:

Nidhi:F
Rahul:M
Nisha:F
The number of bytes are:27

在此,在上面的示例中,使用了NewReader()字符串方法,从该方法中读取要复制的内容。此处使用“Stdout”来创建默认文件描述符,并在其中写入复制的内容。




相关用法


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