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


GO NewEncoder用法及代码示例


GO语言"encoding/base32"包中"NewEncoder"函数的用法及代码示例。

用法:

func NewEncoder(enc *Encoding, w io.Writer) io.WriteCloser

NewEncoder 返回一个新的 base32 流编码器。写入返回的 writer 的数据将使用 enc 进行编码,然后写入 w。 Base32 编码以 5 字节块运行;完成写入后,调用者必须关闭返回的编码器以刷新任何部分写入的块。

例子:

package main

import (
	"encoding/base32"
	"os"
)

func main() {
	input := []byte("foo\x00bar")
	encoder := base32.NewEncoder(base32.StdEncoding, os.Stdout)
	encoder.Write(input)
	// Must close the encoder when finished to flush any partial blocks.
	// If you comment out the following line, the last partial block "r"
	// won't be encoded.
	encoder.Close()
}

输出:

MZXW6ADCMFZA====

相关用法


注:本文由纯净天空筛选整理自golang.google.cn大神的英文原创作品 NewEncoder。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。