本文介绍了vb.net - 恩code字符串转换为UTF-8的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我做了一个等级,符合EN code字符串
I've made a class to encode a string
Public Class UTF8
Public Shared Function encode(ByVal str As String)
Dim utf8Encoding As New System.Text.UTF8Encoding
Dim encodedString() As Byte
encodedString = utf8Encoding.GetBytes(str)
Return encodedString.ToString()
End Function
End Class
返回连接codedString.ToString()总是返回System.Byte []。我怎么能得到真正的UTF-8字符串?
Return encodedString.ToString() always returns "System.Byte[]". How could I get the real UTF-8 String?
推荐答案
使用UTF8.GetString(Byte[])方法。
这篇关于vb.net - 恩code字符串转换为UTF-8的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!