迹忆客 专注技术分享

当前位置:主页 > 学无止境 >

Golang base64 编码示例

作者:迹忆客 最近更新:2023/01/03 浏览次数:

Golang 提供对 base64 编码/解码的内置支持。 直接在标准库中我们有“encoding/base64”,所以不需要下载或安装第三方库。 我们来看看 Go 的 base64 编码文档 https://golang.org/pkg/encoding/base64/。 为了将字符串编码或解码为 base64,我们需要使用提供以下方法的 Encoder 类型

func (enc *Encoding) DecodeString(s string) ([]byte, error)

并将字符串(在本例中为字节片段)编码为 base64 格式

func (enc *Encoding) EncodeToString(src []byte) string

标准库还为我们提供了对字节片进行解码和编码的方法,以用于更通用的用途(解码、编码)。

这是一个关于如何编码和解码 base64 字符串的示例

package main

import (
    "encoding/base64"
    "fmt"
)

func main() {

    // Here's the `string` we'll encode
    plainStr := "Hello World."

    // The encoder we will use is the base64.StdEncoding
    // It requires a byte slice so we cast the string to []byte
    encodedStr := base64.StdEncoding.EncodeToString([]byte(plainStr))
    fmt.Println(encodedStr)

    // Decoding may return an error, in case the input is not well formed
    decodedStrAsByteSlice, err := base64.StdEncoding.DecodeString(encodedStr)
    if err != nil {
        panic("malformed input")
    }
    fmt.Println(string(decodedStrAsByteSlice))
}

下面是预期的输出

SGVsbG8gV29ybGQu
Hello World.

转载请发邮件至 1244347461@qq.com 进行申请,经作者同意之后,转载请以链接形式注明出处

本文地址:

相关文章

GoLang 反转字符串

发布时间:2023/03/24 浏览次数:80 分类:Go

本篇文章演示如何在 GoLang 中反转字符串。

GoLang 比较字符串

发布时间:2023/03/24 浏览次数:76 分类:Go

本篇文章演示如何在 Go 语言中比较字符串。

Go 中的字符串插值

发布时间:2023/03/24 浏览次数:195 分类:Go

GoLang 有很多方法可以将数据简洁易读地插入字符串文字中。

Golang 中的队列实现

发布时间:2023/03/13 浏览次数:154 分类:Go

本文展示了如何使用切片和容器/列表包在 Go 编程语言(通常称为 Golang)中创建队列。

扫一扫阅读全部技术教程

社交账号
  • https://www.github.com/onmpw
  • qq:1244347461

最新推荐

教程更新

热门标签

扫码一下
查看教程更方便