Python 3 写文件 UnicodeEncodeError: 'gbk' codec can't encode character
2021/12/4 22:47:23
本文主要是介绍Python 3 写文件 UnicodeEncodeError: 'gbk' codec can't encode character,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
Python 3 写文件
UnicodeEncodeError: 'gbk' codec can't encode character
网页代码中存在“”<meta charset="gbk">“”,如果存为 utf-8,再用浏览器打开,会出现乱码。因此,必须存为 gbk。
解决方法:
在写入 string 到文件时,采用 string.encode("gbk", 'ignore').decode("gbk", "ignore")
from selenium import webdriver import time browser = webdriver.Firefox(executable_path ="D:\software\geckodriver-v0.30.0-win64\geckodriver.exe") get_html = "test2.html" # 打开文件,准备写入 f = open(get_html, "w", encoding='gbk') ## gbk f = open(get_html, "w", encoding='utf-8') url = 'https://www.lewen5.com/book/45966/' # 这里填你要保存的网页的网址 browser.get(url) time.sleep(2) # 保证浏览器响应成功后再进行下一步操作 # 写入文件 print(browser.page_source ) # 忽略非法字符 print(type(browser.page_source) ) #f.write(browser.page_source.encode('GBK',"ignore").decode()) # 忽略非法字符 f.write(browser.page_source.encode("gbk", 'ignore').decode("gbk", "ignore")) # 忽略非法字符 #f.write(browser.page_source) # 忽略非法字符 print('写入成功') # 关闭文件 f.close()
这篇关于Python 3 写文件 UnicodeEncodeError: 'gbk' codec can't encode character的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2025-01-03用FastAPI掌握Python异步IO:轻松实现高并发网络请求处理
- 2025-01-02封装学习:Python面向对象编程基础教程
- 2024-12-28Python编程基础教程
- 2024-12-27Python编程入门指南
- 2024-12-27Python编程基础
- 2024-12-27Python编程基础教程
- 2024-12-27Python编程基础指南
- 2024-12-24Python编程入门指南
- 2024-12-24Python编程基础入门
- 2024-12-24Python编程基础:变量与数据类型