如何获取字符串的编码类型?

发布于 2024-10-09 11:53:28 字数 228 浏览 3 评论 0原文

使用以下代码,我从流中获取一个字符串,但我不知道编码类型,因为它是由 StreamReader 自动检测到的;

如何获取字符串 respHTML 的编码类型?

Dim reader As StreamReader = New StreamReader(respStream, True)
Dim respHTML as String = reader.ReadToEnd()

With the following code, I get a string from a stream but I don't know the encoding type because it's detected automatically by StreamReader;

how can I get the encoding type of the string respHTML?

Dim reader As StreamReader = New StreamReader(respStream, True)
Dim respHTML as String = reader.ReadToEnd()

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

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

发布评论

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

评论(1

何处潇湘 2024-10-16 11:53:28

字符串包含 Unicode 字符,而不是字节。
编码是将 Unicode 字符保存为字节的方法;字符串没有任何编码。

您可以通过检查 CurrentEncoding 属性

Strings contain Unicode characters, not bytes.
Encodings are ways to save Unicode characters as bytes; a string doesn't have any encoding.

You can get the encoding used by the StreamReader by checking the CurrentEncoding property.

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