如何将默认字符串编码更改为 UTF 8?

发布于 2024-10-01 15:57:43 字数 186 浏览 0 评论 0原文

我猜.net 使用 UTF 16 进行字符串编码。

  1. 如何将其更改为使用 UTF 8?
  2. 更改编码有哪些副作用?
  3. 我的 .net (c#) 应用程序总共保留了大约 120 mb 的字符串实例。我假设如果我可以将默认编码更改为 UTF 8 占用空间将减少一半。

I guess .net uses UTF 16 for string encoding.

  1. How to change it to use UTF 8?
  2. What are the side effects of changing the encoding?
  3. My .net (c#) app totally holds on to around 120 mb for string instances. And I assume if I can change the default encoding to UTF 8 the footprint would reduce to half.

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

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

发布评论

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

评论(1

差↓一点笑了 2024-10-08 15:57:43

无需猜测。它确实在内部使用 UTF-16(请参阅 Char MSDN 上的结构页面)。

您无法更改 .NET 内部处理字符串的方式。

如果需要更改输出编码,请使用 编码类,特别是对于UTF-8,您可以简单地使用静态属性Encoding.UTF8

我理解想要节省空间,但也许您需要重新考虑应用程序设计并将这些字符串放在外部(即从文件系统或数据库加载)而不是编译到应用程序中?

No need to guess. It does indeed use UTF-16 internally (see the remarks section of the Char Structure page on MSDN).

You can't change how .NET handles strings internally.

If you need to change the encoding for output, use the Encoding class, in particular, for UTF-8 you can simply use the static property Encoding.UTF8.

I understand wanting to save the space, but perhaps you need to rethink the application design and have these strings externally (i.e. loaded from the filesystem or a database) and not compiled into the application?

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