Code Monkey home page Code Monkey logo

Comments (4)

Yhangzzz avatar Yhangzzz commented on July 16, 2024

websocket-server不支持中文,解决方法有两个:
1. 修改库文件websocket_server.py中read_next_message函数以支持中文!! 效率高
decoded = bytearray() for char in self.read_bytes(payload_length): char ^= masks[len(decoded) % 4] decoded.append(char) decoded = str(decoded, encoding="utf-8")
2. 在接收函数中再次处理,效率低
bytestream = bytearray() for ch in message: bytestream.append(ord(ch)) message = str(bytestream, encoding="utf-8")

from python-websocket-server.

Yhangzzz avatar Yhangzzz commented on July 16, 2024

主要因为库中解码过程中使用chr()对每个接收的字节处理,从而破坏了GBK编码的汉字,或者其他编码的多字节字符。使用str()则不会破坏。可以尝试下,我这边解决了

from python-websocket-server.

Pithikos avatar Pithikos commented on July 16, 2024

Feel free to make a PR if there is a known solution 👍

from python-websocket-server.

Pithikos avatar Pithikos commented on July 16, 2024

Closing since I can't understand any of this. Feel free to post a solution in English and I can add it.

from python-websocket-server.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.