convert ucs-2 to utf-8 in visual basic 2010

為{幸葍}努か 提交于 2021-02-05 10:48:19

问题


Hello I used visual baisc 2010 and usb modem to sent at commands " ussd " by SerialPort "AT+CUSD=1" my problem when recive result get ucs-2 like this

+CUSD: 0,"00430075007200720065006E007400540069006D0065002000690073003A002000320031002D004A0055004C002D0032003000310038002000310036003A00320036",72

how i can convert to utf-8


回答1:


It looks like that string, because of its composition, is in BigEndianUnicode format.
This encoding format is available from .Net FW 3.5+ / VS 2008.
The .Net version in use is more important than the Visual Studio version, though.

So, let's try to parse this string and see what comes out of it.

Dim input As String = [SerialPortOutput]

input = input.Replace(ChrW(34), "")
Dim ucs2 As String = input.Split(","c)(1)

Dim HexBytes As List(Of Byte) = New List(Of Byte)()
For i As Integer = 0 To ucs2.Length - 1 Step 2
    HexBytes.Add(Byte.Parse(ucs2.Substring(i, 2), NumberStyles.HexNumber))
Next

Now, transform the List of bytes from BigEndianUnicode to a standard .Net string.

Dim output As String = Encoding.BigEndianUnicode.GetString(HexBytes.ToArray())

The output string reads:

"CurrentTime is: 21-JUL-2018 16:26"

To convert it to UTF8, if really needed (Internet transfer, maybe), get the encoded array of bytes:

Dim UTF8Bytes As Byte() = Encoding.UTF8.GetBytes(output)


来源:https://stackoverflow.com/questions/51457007/convert-ucs-2-to-utf-8-in-visual-basic-2010

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!