如下图,创建一个httpserver,正常情况下这行代码是没问题的,但是如果碰到当前的windwos电脑名里含有中文(unicode,非 ascii)时就会报错。字符无效。
bash
File "C:\Users\admin\AppData\Local\Programs\Python\Python38\lib\socketserver.py", line 452, in __init__
self.server_bind()
File "C:\Users\admin\AppData\Local\Programs\Python\Python38\lib\http\server.py", line 140, in server_bind
self.server_name = socket.getfqdn(host)
File "C:\Users\admin\AppData\Local\Programs\Python\Python38\lib\socket.py", line 756, in getfqdn
hostname, aliases, ipaddrs = gethostbyaddr(name)
UnicodeDecodeError: 'utf-8' codec can't decode byte 0xb2 in position 0: invalid start byte
调试跟踪到报错位置,可以发现 def getfqdn(name=''): 这个函数里 的name是个中文,从而导致出错了。 因为这里是python的内部库,不好修改。 往上查查看。
是在 HTTPServer 的 server_bind 里调用的。 那就简单了,我们用的
ThreadingHTTPServer 类 是继承自这个了类的。
我们定义一个子类 继承 ThreadingHTTPServer 并覆写 server_bind 方法,就能跳过这个bug了。
如下:
搞定。