python读取文件内容报错,应该是编码问题,求解答

#-*-coding:cp936-*-importosdeffilters():#获取当前路径path=os.getcwd()LogPath=path+"\Monkeyl... #-*- coding:cp936 -*-
import os

def filters():
#获取当前路径
path = os.getcwd()
LogPath =path+"\Monkeylogcat.log"
LogLine = open(LogPath)
Results = {}
Keywords = "E/AndroidRuntime"
Mobo = "mobogenie"
for line in LogLine:
if (Keywords in line) and (Mobo in line):
Results[line] = 1
if line in Results.keys():
Results[line]+=1

LogLine.close()

Output = open('result.txt', 'w')
Output.write("Key\tnum\n")

keys = Results.keys()
for key in keys:
Output.write(key)
Output.write("\t")
Output.write(Results[key])
Output.write("\n")
Output.close()

if __name__ == "__main__":

filters()
报错:UnicodeDecodeError: 'gbk' codec can't decode bytes in position 7299-7300: illegal multibyte sequence
展开
 我来答
tim_spac
2014-01-14 · TA获得超过3628个赞
知道大有可为答主
回答量:1804
采纳率:100%
帮助的人:1998万
展开全部
建议用codecs.open替代open; 若LogPath文件是以utf-8编码格式保存的:
LogLine = open(LogPath) ==> LogLine = codecs.open(LogPath, 'r', 'utf-8')
追问
LogLine = codecs.open(LogPath, 'r', 'utf-8')
NameError: global name 'codecs' is not defined
提示这个 错误
LogLine = open(LogPath, 'r', 'utf-8')
TypeError: an integer is required
咋回事截,以前读文本文件从来没有过这样的问题
追答

codecs是python的一个模块,你在使用前需要先import

#-*- coding:cp936 -*-    
import os
import codecs
..
琢离飘04
2014-01-14 · TA获得超过301个赞
知道小有建树答主
回答量:312
采纳率:100%
帮助的人:234万
展开全部
类型不匹配
Output.write(Results[key])//这里Results[key]为int类型,加一个类型转换str(Results[key])
追问
恩恩,那块是有点问题,可是这个报错是读文件的时候出现的,不是写文件的时候出的
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
熊熊烟05N
2014-01-15
知道答主
回答量:15
采纳率:0%
帮助的人:18.3万
展开全部
import os,sys
reload(sys)
sys.setdefaultencoding('utf-8')
在上面加上这几句吧
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式