解決 python 中讀寫檔案的終極方案 UnicodeDecodeError: 'gbk' codec can't decode byte 0x9d in position 1270: illega

來源:互聯網
上載者:User

標籤:python   read   open   error   

UnicodeDecodeError: ‘gbk’ codec can’t decode byte 0x9d in position 1270: illegal multibyte sequence

上面是遇到的錯誤,本來想完成讀檔案,再寫入另一檔案的。但是在 fp.read() 時,一直遇到上面的錯誤,經過各種百度,google, 還有神奇的 stackoverflow 才知道是字元流的問題。

知道問題所在,還是沒有解決,又苦苦搜尋,終於在 stackoverflow 上找到靈感,可以把 open 的方式變為 二進位,也就是下面代碼裡的 open(filename,’rb’), 這下好了,至少後面的read() 可以通過。

再之後就產生了以下代碼,發現問題的路真心不好走,在此mark 下。

# _*_coding:utf-8_*_import refilename = ‘section5‘fp = open(filename,‘rb‘)content = fp.read().decode(‘utf-8‘)reg = r‘<p>(.*?)</p>‘#print(content)result = re.findall(reg,content)fp.close()fp = open(filename+‘.txt‘,‘bw‘)for r in result:    r = r.encode(‘utf-8‘)    fp.write(r)    fp.write(‘\n‘.encode(‘utf-8‘))fp.close()

著作權聲明:本文為博主原創文章,未經博主允許不得轉載。

解決 python 中讀寫檔案的終極方案 UnicodeDecodeError: 'gbk' codec can't decode byte 0x9d in position 1270: illega

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.