微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

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()

 

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐