为什么从 MAC 向 PC 发送请求时出现乱码?

发布于 2024-10-31 03:56:41 字数 137 浏览 2 评论 0原文

我从 MAC 向 PC 发送一些数据。在 MAC 上,我从 iPhone 模拟器发送它,在 PC 上,我在 Visual Studio 中捕获请求。如果数据是英文字母,那么我收到正常数据,如果数据包含俄语、希伯来语等字母,那么我收到乱码。 它与字节顺序有关吗?

I send some data from MAC to PC. From MAC I send it from iPhone emulator and in PC I catch the request in Visual Studio. If the data is ENGLISH letters, so I receive normal data, if data contains RUSSIAN, HEBREW and etc letters, so I receive gibberish.
Does it something with the endianness?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

挖个坑埋了你 2024-11-07 03:56:41

编辑:看来字节序毕竟不太可能成为问题。

听起来数据是用 UTF-8 编码的,因此实际上可以很好地通过网络传输。 Visual Studio 根本无法正确显示 utf-8 字符;但是,如果您设法将字符串数据复制出来并将其转储到可以解码 utf-8 的文件中,您可能会发现字符串数据仍然完好无损。

Edit: It seems it would be unlikely for endianness to be a problem here after all.

It sounds like the data is encoded in UTF-8, and as such is actually coming across the wire just fine. Visual Studio simply won't display utf-8 characters properly; however if you managed to copy the string data out and dump it into something that can decode utf-8, you'd probably find that your string data is still intact.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文