gpt4 book ai didi

C# 将 byte[] 转换为带有字符集的字符串

转载 作者:太空宇宙 更新时间:2023-11-03 22:02:34 24 4
gpt4 key购买 nike

在 C# 中,我们如何使用字符集将 byte[] 转换为字符串。例如 utf8、SHIFT_JIS 等.我知道编码.UTF8

byte[] inputBytes =SupportClass.ToByteArray(readBytes);
StringBuilder result;
result.Append(System.Text.Encoding.UTF8.GetString(inputBytes,0,inputBytes.Length));//get unreadable code.

我的问题是如何使用特殊的字符集从 inputBytes 中获取结果,比如 java

StringBuffer result.append(new String(buffer, "SJIS"));

最佳答案

System.Text.Encoding enc = System.Text.Encoding.GetEncoding("shift-jis");
result.Append(enc.GetString(inputBytes,0,inputBytes.Length));

查看这篇文章:

http://msdn.microsoft.com/en-us/library/aa332097(v=vs.71).aspx

关于C# 将 byte[] 转换为带有字符集的字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9577410/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com