首页 > 编程语言 > 详细

解决Python读取文件时出现UnicodeDecodeError: 'gbk' codec can't decode byte...

时间:2016-07-23 23:04:17      阅读:653      评论:0      收藏:0      [点我收藏+]

用Python在读取某个html文件时会遇到下面问题:

技术分享

出问题的代码:

1 if __name__ == __main__:
2     fileHandler = open(../report.html, mode=r)
3 
4     report_lines = fileHandler.readlines()
5     for line in report_lines:
6         print(line.rstrip())

修改方式是在open方法指定参数encoding=‘UTF-8‘:

if __name__ == __main__:
    fileHandler = open(../report.html, mode=r, encoding=UTF-8)

    report_lines = fileHandler.readlines()
    for line in report_lines:
        print(line.rstrip())

 

解决Python读取文件时出现UnicodeDecodeError: 'gbk' codec can't decode byte...

原文:http://www.cnblogs.com/arctique/p/5699620.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!