怎么将字节数组进行 Base64 反序列化
时间: 2024-03-08 07:22:13 浏览: 198
把字符数组转化为base64位
将字节数组进行 Base64 反序列化的步骤如下:
1. 导入 Base64 库
```python
import base64
```
2. 将字节数组转换成字符串
```python
byte_array = b'SGVsbG8gV29ybGQh'
encoded_string = byte_array.decode('utf-8')
```
3. 使用 Base64 解码字符串
```python
decoded_bytes = base64.b64decode(encoded_string)
```
完整代码如下:
```python
import base64
byte_array = b'SGVsbG8gV29ybGQh'
encoded_string = byte_array.decode('utf-8')
decoded_bytes = base64.b64decode(encoded_string)
print(decoded_bytes)
```
输出结果为:
```
b'Hello World!'
```
阅读全文