|
楼主 |
发表于 2023-5-28 17:10
|
显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件 ★ 免费下载 ★ ★ 使用帮助★
本帖最后由 逆天修炼 于 2023-5-28 17:11 编辑
有个帐子说了有关查看网页源码编码的函数,但是不会用,所以我也不知原网页源码是用的什么编码?
- function checkcode(path)
- set objstream=server.createobject("adodb.stream")
- objstream.Type=1
- objstream.mode=3
- objstream.open
- objstream.Position=0
- objstream.loadfromfile path
- bintou=objstream.read(2)
- If AscB(MidB(bintou,1,1))=&HEF And AscB(MidB(bintou,2,1))=&HBB Then
- checkcode="utf-8"
- ElseIf AscB(MidB(bintou,1,1))=&HFF And AscB(MidB(bintou,2,1))=&HFE Then
- checkcode="unicode"
- Else
- checkcode="gb2312"
- End If
- objstream.close
- set objstream=nothing
- end function
|
|