概述
Function EncodeBase64(bytesData)
Dim objXd
Set objXd=Server.CreateObject("msxml.domdocument")
Call objXd.loadXml("<root/>")
objXd.DocumentElement.DataType="bin.base64"
objXd.DocumentElement.NodeTypedValue=bytesData
EncodeBase64=objXd.DocumentElement.text
End Function
Function Base64Decode(strData)
Dim objXd
Set objXd=Server.CreateObject("msxml.domdocument")
Call objXd.loadXml("<root/>")
objXd.DocumentElement.DataType="bin.base64"
objXd.DocumentElement.text=strData
Base64Decode=objXd.DocumentElement.NodeTypedValue
End Function
Function Save2Local(imgs,tofile)
Set objStream=Server.CreateObject("Adodb.Stream")
objStream.Mode=3
objStream.Type=1
objStream.Open
objStream.Write imgs
objStream.SaveToFile tofile,2
objStream.Close
Set objStream=Nothing
End Function
上面的bin.base64换成bin.hex就可以解hex的了
参考:
http://www.hdfu.net/down.html
http://www.yc-edu.org/netpeixun/2631.html
http://zhidao.baidu.com/question/347852000.html
转载于:https://blog.51cto.com/332374363/1256983
最后
以上就是犹豫大船为你收集整理的bin.base64和bin.hex编码与解码的全部内容,希望文章能够帮你解决bin.base64和bin.hex编码与解码所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复