首页 > 编程 > ASP > 正文

asp实现二进制字符串转换为Unicode字符串

2020-07-27 13:08:08
字体:
来源:转载
供稿:网友
若需要utf-8格式,请自行将下面的GB2312改成utf-8。

' 二进制转字符串,否则会出现乱码的! 
Function sTb(vin)
        Const adTypeText = 2
        Dim BytesStream,StringReturn
        Set BytesStream = Server.CreateObject("ADODB.Stream")
 With BytesStream
       .Type = adTypeText
       .Open
       .WriteText vin
       .Position = 0
       .Charset = "GB2312"
       .Position = 2
        StringReturn = .ReadText
       .Close
   End With
Set BytesStream = Nothing
sTb = StringReturn
End Function 
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表