Python——报错UnicodeDecodeError: ‘utf-8‘ codec can‘t decode byte 0x89 in position 0: invalid start byte

报错:UnicodeDecodeError: ‘utf-8’ codec can’t decode byte 0x89 in position 0: invalid start byte 解决办法

from fastapi import FastAPI,Response
import uvicorn
app=FastAPI()

@app.get("/{path}")
def index(path):
    print(path)
    with open(f"WebServer_html/{path}","r",encoding="UTF-8") as f:
        content = f.read()
        return Response(content=content)
        
uvicorn.run(app,host="192.168.82.163",port=9999)

运行后出错:

在这里插入图片描述

更改成gbk格式也不行

from fastapi import FastAPI,Response
import uvicorn
app=FastAPI()

@app.get("/{path}")
def index(path):
    print(path)
    with open(f"WebServer_html/{path}","r",encoding="GBK") as f:
        content = f.read()
        return Response(content=content)
        
uvicorn.run(app,host="192.168.82.163",port=9999)

在这里插入图片描述
我试了网上的各种方法:包括如下

  1. 在代码前加上两行,实操不行
#-*- coding : utf-8-*-
# coding:utf-8
from fastapi import FastAPI,Response
import uvicorn
app=FastAPI()

@app.get("/{path}")
def index(path):
    print(path)
    with open(f"WebServer_html/{path}","r",encoding="UTF-8") as f:
        content = f.read()
        return Response(content=content)
        
uvicorn.run(app,host="192.168.82.163",port=9999)
  1. 用编码格式 “unicode_escape”
    运行确实不出错了,但是运行后中文变成乱码,不行
from fastapi import FastAPI,Response
import uvicorn
app=FastAPI()

@app.get("/{path}")
def index(path):
    print(path)
    with open(f"WebServer_html/{path}","r",encoding="unicode_escape") as f:
        content = f.read()
        return Response(content=content)
        
uvicorn.run(app,host="192.168.82.163",port=9999)

解决办法如下:

# with open(f"WebServer_html/{path}","r",encoding="UTF-8") as f:
with open(f"WebServer_html/{path}","r",encoding="UTF-8",errors='ignore') as f:

在encoding参数后面加上,errors参数并设置为’ignore’。亲测有效

UnicodeDecodeErrorPython中的一个异常,表示在解码Unicode字符串时发生了错误。具体地说,"utf-8 codec can't decode byte 0x8f in position 18: invalid start byte"这个错误表示在使用UTF-8编解码器解码字节序列时,遇到了无效的起始字节0x8f。 UTF-8是一种变长编码方式,它使用1到4个字节来表示一个Unicode字符。在UTF-8编码中,每个字节的最高位用于标识该字节是否为一个字符的起始字节,如果一个字节的最高位为0,则表示该字节为一个字符的起始字节;如果最高位为1,则表示该字节为一个字符的后续字节。 在你提供的错误信息中,字节序列中的第18个字节0x8f被认为是无效的起始字节,因此无法正确解码。这可能是由于以下原因导致的: 1. 字节序列中包含了非UTF-8编码的字节。 2. 字节序列中的某些字节丢失或损坏。 3. 字符串本身不是以UTF-8编码保存的。 要解决这个问题,你可以尝试以下几种方法: 1. 确保输入的字节序列是以UTF-8编码保存的,并且没有丢失或损坏的字节。 2. 如果你知道输入的编码方式,可以尝试使用相应的编码器进行解码。 3. 如果你不确定输入的编码方式,可以尝试使用Python的chardet库来自动检测编码方式。 4. 如果你无法修复输入的字节序列,可以考虑使用错误处理机制来处理解码错误,例如忽略错误的字节或替换为特定的占位符。 希望以上信息对你有帮助!如果你还有其他问题,请随时提问。
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值