VB怎么把ANSI编码的txt文件转为UTF-8编码? 100
VB怎么把ANSI编码的txt文件转为UTF-8编码?点击窗体上的command1自动把C:\1.txt转为UTF-8的文本。之前用过很多代码,得出的都是乱码。对了,是不...
VB怎么把ANSI编码的txt文件转为UTF-8编码?
点击窗体上的command1自动把C:\1.txt转为UTF-8的文本。
之前用过很多代码,得出的都是乱码。
对了,是不包含签名的UTF-8。
谢谢。 展开
点击窗体上的command1自动把C:\1.txt转为UTF-8的文本。
之前用过很多代码,得出的都是乱码。
对了,是不包含签名的UTF-8。
谢谢。 展开
2个回答
展开全部
charset设置为utf-8即可
Function BytesToBstr(body, charset)
Dim objstream
Set objstream = CreateObject("adodb.stream")
objstream.Type = 1
objstream.Mode = 3
objstream.Open
On Error Resume Next
objstream.Write body
objstream.Position = 0
objstream.Type = 2
objstream.charset = charset
BytesToBstr = objstream.ReadText
objstream.Close
Set objstream = Nothing
End Function
Function BytesToBstr(body, charset)
Dim objstream
Set objstream = CreateObject("adodb.stream")
objstream.Type = 1
objstream.Mode = 3
objstream.Open
On Error Resume Next
objstream.Write body
objstream.Position = 0
objstream.Type = 2
objstream.charset = charset
BytesToBstr = objstream.ReadText
objstream.Close
Set objstream = Nothing
End Function
追问
好像不是针对文件而是针对字符串的,呃
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
0122444444
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询