如何将默认字符串编码更改为 UTF 8?
我猜.net 使用 UTF 16 进行字符串编码。
- 如何将其更改为使用 UTF 8?
- 更改编码有哪些副作用?
- 我的 .net (c#) 应用程序总共保留了大约 120 mb 的字符串实例。我假设如果我可以将默认编码更改为
UTF 8
占用空间将减少一半。
I guess .net uses UTF 16 for string encoding.
- How to change it to use UTF 8?
- What are the side effects of changing the encoding?
- 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
无需猜测。它确实在内部使用 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 propertyEncoding.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?