gpt4 book ai didi

.net - vb.net - 将字符串编码为 UTF-8

转载 作者:行者123 更新时间:2023-12-02 08:54:32 34 4
gpt4 key购买 nike

我创建了一个类来对字符串进行编码

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

返回encodedString.ToString() 始终返回“System.Byte[]”。我怎样才能得到真正的UTF-8字符串?

最佳答案

使用UTF8.GetString(Byte[])方法。

关于.net - vb.net - 将字符串编码为 UTF-8,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6035380/

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