GO语言"encoding/hex"包中"Dumper"函数的用法及代码示例。
用法:
func Dumper(w io.Writer) io.WriteCloser
Dumper 返回一个WriteCloser,它将所有写入数据的十六进制转储写入 w。转储的格式与命令行上的 `hexdump -C` 的输出相匹配。
例子:
package main
import (
"encoding/hex"
"os"
)
func main() {
lines := []string{
"Go is an open source programming language.",
"\n",
"We encourage all Go users to subscribe to golang-announce.",
}
stdoutDumper := hex.Dumper(os.Stdout)
defer stdoutDumper.Close()
for _, line := range lines {
stdoutDumper.Write([]byte(line))
}
}
输出:
00000000 47 6f 20 69 73 20 61 6e 20 6f 70 65 6e 20 73 6f |Go is an open so| 00000010 75 72 63 65 20 70 72 6f 67 72 61 6d 6d 69 6e 67 |urce programming| 00000020 20 6c 61 6e 67 75 61 67 65 2e 0a 57 65 20 65 6e | language..We en| 00000030 63 6f 75 72 61 67 65 20 61 6c 6c 20 47 6f 20 75 |courage all Go u| 00000040 73 65 72 73 20 74 6f 20 73 75 62 73 63 72 69 62 |sers to subscrib| 00000050 65 20 74 6f 20 67 6f 6c 61 6e 67 2d 61 6e 6e 6f |e to golang-anno| 00000060 75 6e 63 65 2e |unce.|
相关用法
- GO DumpResponse用法及代码示例
- GO DumpRequest用法及代码示例
- GO DumpRequestOut用法及代码示例
- GO Dump用法及代码示例
- GO Duration.Hours用法及代码示例
- GO Duration.Round用法及代码示例
- GO Duration用法及代码示例
- GO Duration.Truncate用法及代码示例
- GO Duration.String用法及代码示例
- GO Duration.Minutes用法及代码示例
- GO Duration.Milliseconds用法及代码示例
- GO Duration.Seconds用法及代码示例
- GO Duration.Microseconds用法及代码示例
- GO Duration.Nanoseconds用法及代码示例
- GO DecodeLastRuneInString用法及代码示例
- GO DB.QueryRowContext用法及代码示例
- GO Date用法及代码示例
- GO DB.ExecContext用法及代码示例
- GO Dial用法及代码示例
- GO DB.BeginTx用法及代码示例
注:本文由纯净天空筛选整理自golang.google.cn大神的英文原创作品 Dumper。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。