file转换成base64
时间: 2023-07-13 12:11:10 浏览: 101
把文件转化为base64
5星 · 资源好评率100%
可以使用Python的base64模块将文件内容转换成base64编码。
以下是一个示例代码,其中file_path为文件路径:
```python
import base64
with open(file_path, "rb") as file:
encoded_string = base64.b64encode(file.read()).decode('utf-8')
print(encoded_string)
```
这将打开指定的文件,将其内容读取为字节码并将其编码为base64,最后将编码后的字符串打印出来。
阅读全文