python生成html文件在pycharm中正常显示,在浏览器中打开中文乱码

今天用python(版本3.5)将爬取的数据写入html文件中,代码如下:

        fout=open('output1.html','w',encoding='utf-8')
        fout.write("<html>")
        fout.write("<body>")
        fout.write("<table>")
        for data in self.datas:
            fout.write("<tr>")
            #print(data['summary'])
            fout.write("<td>%s</td>"%data['url'])
            #print(data['title'])
            fout.write("<td>%s</td>" % data['title'])
            fout.write("<td>%s</td>" % data['summary'])
            fout.write("</tr>")
        fout.write("</table>")
        fout.write("</body>")
        fout.write("</html>")

 

发现数据在控制台输出正常,如下图:

然而在edge浏览器打开时,中文部分全是乱码。如下图:

通过查询资料后,获得正确的解决方案为在html和body之间插入一句:

fout.write("<meta charset=\"utf-8\">")告诉浏览器打开文件的编码方式
如下所示
        fout=open('output.html','w',encoding='utf-8')
        fout.write("<html>")
        fout.write("<meta charset=\"utf-8\">")
        fout.write("<body>")
        fout.write("<table>")

 参考博客链接:https://www.cnblogs.com/nx520zj/p/5865607.html

转载于:https://www.cnblogs.com/qiututu/p/10329079.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值