vb中如何把二进制方式接收的数据转成字符串,达到和以字符串方式接收的数据一样

2024-12-28 21:41:51
推荐回答(3个)
回答1:

给你一个实用的函数:

Function bytes2BSTR(vIn)
strReturn = ""
For i = 1 To LenB(vIn)
ThisCharCode = AscB(MidB(vIn,i,1))
If ThisCharCode < &H80 Then
strReturn = strReturn & Chr(ThisCharCode)
Else
NextCharCode = AscB(MidB(vIn,i+1,1))
strReturn = strReturn & Chr(CLng(ThisCharCode) * &H100 + CInt(NextCharCode))
i = i + 1
End If
Next
bytes2BSTR = strReturn
End Function

回答2:

char to code

回答3:

使用VB自带的函数:StrConv
自己查帮助。