识别输入字符串的代码页

发布于 2024-09-11 22:20:50 字数 82 浏览 5 评论 0原文

如何识别输入字符串的代码页,例如,如果我用西里尔字母输入某些内容,它应该返回 windows-1251,当我用中文输入字符串时,它应该返回其他代码页等

How to recognize code page of input string, for example if I put something in Cyrillic it should return windows-1251 and when I put string in Chinese it return other code page etc

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

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

发布评论

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

评论(1

煮茶煮酒煮时光 2024-09-18 22:20:50

如果这是来自文本框(Windows 窗体)的输入,则该字符串是 .Net 字符串,并且始终采用 unicode (UTF-16)

如果您从 Web 表单 (aspx) 页获取输入,浏览器也会随之发送代码页。 .Net 将为您将其转为 unicode。

如果您从文件中获取输入,我祝你好运;-)。

If this is an input from a textbox (windows forms) the string is a .Net string, and is always in unicode (UTF-16).

If you get the input from a Web form (aspx) page, the browser also sends the codepage with it. And .Net will make it unicode for you.

If you get the input from a file, I wish you good luck ;-).

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