Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
358 views
in Technique[技术] by (71.8m points)

c# - 如何将UTF-8字节[]转换为字符串?(How to convert UTF-8 byte[] to string?)

I have a byte[] array that is loaded from a file that I happen to known contains UTF-8 .

(我有一个byte[]数组,它是从一个我所知道的包含UTF-8的文件中加载的。)

In some debugging code, I need to convert it to a string.

(在一些调试代码中,我需要将其转换为字符串。)

Is there a one liner that will do this?

(是否有一个班轮可以做到这一点?)

Under the covers it should be just an allocation and a memcopy , so even if it is not implemented, it should be possible.

(在幕后 ,它应该只是一个分配和一个内存复制 ,因此即使未实现它也应该是可能的。)

  ask by BCS translate from so

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)
string result = System.Text.Encoding.UTF8.GetString(byteArray);

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...