全球化源代码

发布于 2024-07-11 05:32:08 字数 224 浏览 7 评论 0原文

我正在运行一个开源项目,中国用户时不时地报告由于无法识别的转义序列 .cs 和 .js 文件而导致的构建错误。 当他们粘贴看到的文件时,我注意到拉丁字符变成了中文。

我正在使用 Visual Studio,当我查看“高级保存选项”时,设置为“西欧 (Windows) - 代码页 1252”。

我应该使用 Unicode(带签名的 UTF-8)吗? 有没有办法转换解决方案中的所有文件?

I'm running an open source project and every now and then Chinese users report build errors due to unrecognized escape sequences .cs and .js files. When they paste the files as they see them I notice that the Latin characters are changed into Chinese.

I'm using Visual Studio and when I look at "Advanced Save Options" the setting is "Western European (Windows) - Codepage 1252".

Should I be using Unicode (UTF-8 with signature)? Is there a way to convert all files in the solution?

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

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

发布评论

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

评论(1

恋竹姑娘 2024-07-18 05:32:08

您可能应该使用 UTF-8(或 UTF-16),以便可以处理所有字符。 代码页 1252 与 ISO-8859-1 几乎相同,但不能处理中文字符。 这是一个可能令人感兴趣的链接

You should probably use UTF-8 (or UTF-16) so you can handle all characters. Codepage 1252 is almost the same as ISO-8859-1 but that can't handle Chinese characters. Here is a link that can be of interest.

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