好湿?好紧?好多水好爽自慰,久久久噜久噜久久综合,成人做爰A片免费看黄冈,机机对机机30分钟无遮挡

主頁 > 知識庫 > hta實(shí)現(xiàn)的二進(jìn)制文件轉(zhuǎn)換為文本

hta實(shí)現(xiàn)的二進(jìn)制文件轉(zhuǎn)換為文本

熱門標(biāo)簽:湖州手機(jī)外呼系統(tǒng) DOTA地圖標(biāo)注app 聯(lián)通400電話去哪里申請啊 徐州客服外呼系統(tǒng)排名 五華銷售外呼管理系統(tǒng)電話 汕頭外呼crm系統(tǒng) 綿陽外呼線路 軟通動(dòng)力地圖標(biāo)注專員 百度地圖標(biāo)注地址有什么影響
保存為.hta運(yùn)行
!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> 
html> 
head> 
title>package file v0.1/title> 
meta http-equiv="Content-Type" content="text/html; charset=GB2312"> 
HTA:APPLICATION     
     ID="package file v0.1"     
     APPLICATIONNAME="package file v0.1"     
     VERSION="0.1"     
     SCROLL="no"     
     INNERBORDER="no"     
     CONTEXTMENU="yes"     
     CAPTION="yes"     
     ICON="no"     
     SHOWINTASKBAR="yes"     
     SINGLEINSTANCE="yes"     
     SYSMENU="yes"     
     MAXIMIZEBUTTON ="no" 
     WINDOWSTATE="normal" 
     NAVIGABLE="yes" 
     /> 
SCRIPT LANGUAGE="VBScript"> 
function transfert() 
     dim filename 
     filename = document.getElementById("srcFile").value 
     if len(filename)>0 then 
             dim oReq         
             'on error resume next 
             '//創(chuàng)建XMLHTTP對象 
             set oReq     = CreateObject("MSXML2.XMLHTTP") 
                 oReq.open "get","file:\\"  filename,false 
                 oReq.send     
             ff = oReq.responseBody 
             dim u,s,kk 
             u = lenb(ff) 
             redim kk(u-1) 
             for i=0 to u-1 
                 s = hex(ascb(midb(ff,i+1,1))) 
                 if len(s)2 then 
                     s = "0"  s 
                 end if 
                 'kk = kk  s 
                 kk(i) = s 
             next 
             make filename,join(kk,"") 
     else 
             document.getElementById("srcFile").focus 
             msgbox "請選擇要壓縮的文件",16,"提示" 
     end if 
end function 
function make(filename,data) 
     dim htm,file 
     file = mid(filename,instrrev(filename,"\")+1) 
     htm = htm  "html>"                              vbcrlf 
     htm = htm  "head>"                              vbcrlf 
     htm = htm  "title>selfdec/title>"      vbcrlf 
     htm = htm  "meta http-equiv=""Content-Type"" content=""text/html; charset=GB2312"">"  vbcrlf 
     htm = htm  "HTA:APPLICATION "                  vbcrlf 
     htm = htm  "     ID=""selfdec"" "              vbcrlf 
     htm = htm  "     APPLICATIONNAME=""self"" "  vbcrlf 
     htm = htm  "     VERSION=""0.1"" "              vbcrlf 
     htm = htm  "     SCROLL=""no"" "                  vbcrlf 
     htm = htm  "     INNERBORDER=""no"" "      vbcrlf 
     htm = htm  "     CONTEXTMENU=""no"" "      vbcrlf 
     htm = htm  "     CAPTION=""no"" "              vbcrlf 
     htm = htm  "     ICON=""no"" "                  vbcrlf 
     htm = htm  "     SHOWINTASKBAR=""no"" "      vbcrlf 
     htm = htm  "     SINGLEINSTANCE=""yes"" " vbcrlf 
     htm = htm  "     SYSMENU=""no"" "              vbcrlf 
     htm = htm  "     MAXIMIZEBUTTON =""no"""  vbcrlf 
     htm = htm  "     WINDOWSTATE=""normal"""  vbcrlf 
     htm = htm  "     NAVIGABLE=""yes"""              vbcrlf 
     htm = htm  "     />"                                  vbcrlf 
     htm = htm  ""                                      vbcrlf 
     htm = htm  "SCRIPT LANGUAGE=""VBScript"">"              vbcrlf 
     htm = htm  ""                                      vbcrlf 
     htm = htm  "'//保存文件"                      vbcrlf 
     htm = htm  "function saveFile(filename,str)"              vbcrlf 
     htm = htm  ""                                      vbcrlf 
     htm = htm  "     set adodbStream = CreateObject(""ADODB""  "".""  ""Stream"")"  vbcrlf 
     htm = htm  ""                                      vbcrlf 
     htm = htm  "     adodbStream.Type= 1"      vbcrlf 
     htm = htm  "     adodbStream.Open"              vbcrlf 
     htm = htm  "     adodbStream.write str"      vbcrlf 
     htm = htm  "     adodbStream.SaveToFile filename,2"  vbcrlf 
     htm = htm  "     adodbStream.Close"              vbcrlf 
     htm = htm  ""                                      vbcrlf 
     htm = htm  "end function"                      vbcrlf 
     htm = htm  ""                                      vbcrlf 
     htm = htm  "'//VB數(shù)組轉(zhuǎn)變成二進(jìn)制格式"  vbcrlf 
     htm = htm  "Function MultiByteToBinary(MultiByte)"  vbcrlf 
     htm = htm  ""                                      vbcrlf 
     htm = htm  "     Dim RS, LMultiByte, Binary"                  vbcrlf 
     htm = htm  "     Const adLongVarBinary = 205"              vbcrlf 
     htm = htm  "     Set RS = CreateObject(""ADODB.Recordset"")"  vbcrlf 
     htm = htm  "     LMultiByte = LenB(MultiByte)"              vbcrlf 
     htm = htm  "     If LMultiByte>0 Then"      vbcrlf 
     htm = htm  "             RS.Fields.Append ""mBinary"", adLongVarBinary, LMultiByte"      vbcrlf 
     htm = htm  "             RS.Open"                  vbcrlf 
     htm = htm  "             RS.AddNew"                  vbcrlf 
     htm = htm  "             RS(""mBinary"").AppendChunk MultiByte  ChrB(0)"                  vbcrlf 
     htm = htm  "             RS.Update"                  vbcrlf 
     htm = htm  "             Binary = RS(""mBinary"").GetChunk(LMultiByte)"                      vbcrlf 
     htm = htm  "     End If"                              vbcrlf 
     htm = htm  "     MultiByteToBinary = Binary"                  vbcrlf 
     htm = htm  ""                                      vbcrlf 
     htm = htm  "End Function"                      vbcrlf 
     htm = htm  ""                                      vbcrlf 
     htm = htm  "function DeleteMe()"              vbcrlf 
     htm = htm  "     "                                  vbcrlf 
     htm = htm  "     dim filename"                  vbcrlf 
     htm = htm  "     filename     = document.location.href"  vbcrlf 
     htm = htm  ""                                      vbcrlf 
     htm = htm  "     filename     = mid(filename,instrrev(filename,""/"")+1)"  vbcrlf 
     htm = htm  ""                                      vbcrlf 
     htm = htm  "     Dim fso, MyFile"              vbcrlf 
     htm = htm  "     Set fso             = CreateObject(""Script"  "ing.FileS"  "ystemObject"")     "  vbcrlf 
     htm = htm  "     Set MyFile     = fso.GetFile(filename)"  vbcrlf 
     htm = htm  "             MyFile.Delete"              vbcrlf 
     htm = htm  ""                                      vbcrlf 
     htm = htm  "end function"                      vbcrlf 
     htm = htm  ""                                      vbcrlf 
     htm = htm  "function exec()"                  vbcrlf 
     htm = htm  "     "                                  vbcrlf 
     htm = htm  "     '//屏蔽錯(cuò)誤"                  vbcrlf 
     htm = htm  "     'on error resume next"      vbcrlf 
     htm = htm  ""                                      vbcrlf 
     htm = htm  "     '//改變窗體大小"              vbcrlf 
     htm = htm  "     window.resizeTo 0,0"      vbcrlf 
     htm = htm  ""                                      vbcrlf 
     htm = htm  "     dim data,t,kk,filename"  vbcrlf 
     htm = htm  ""                                      vbcrlf 
     htm = htm  "     '//得到數(shù)據(jù)"                  vbcrlf 
     htm = htm  "     data             = document.getElementById(""divData"").innerText"  vbcrlf 
     htm = htm  "     '//得到文件名"                  vbcrlf 
     htm = htm  "     filename     = document.getElementById(""divFileName"").innerText"  vbcrlf 
     htm = htm  ""                                      vbcrlf 
     htm = htm  "     '//得到數(shù)據(jù)長度"              vbcrlf 
     htm = htm  "         u = len(data)"                  vbcrlf 
     htm = htm  "     "                                  vbcrlf 
     htm = htm  "     '//獲得文件數(shù)組"              vbcrlf 
     htm = htm  "     for i=1 to u step 2"      vbcrlf 
     htm = htm  "             t = mid(data,i,2)"      vbcrlf 
     htm = htm  "             kk = kk  ChrB(clng(""H""  t))"  vbcrlf 
     htm = htm  "     next"                              vbcrlf 
     htm = htm  ""                                      vbcrlf 
     htm = htm  "     '//轉(zhuǎn)變成二進(jìn)制格式"      vbcrlf 
     htm = htm  "     dataArry = MultiByteToBinary(kk)"      vbcrlf 
     htm = htm  "     "                                  vbcrlf 
     htm = htm  "     '//保存文件     "                  vbcrlf 
     htm = htm  "     saveFile filename,dataArry"                  vbcrlf 
     htm = htm  ""                                      vbcrlf 
     htm = htm  "     '//刪除自己"                  vbcrlf 
     htm = htm  "     DeleteMe"                      vbcrlf 
     htm = htm  ""                                      vbcrlf 
     htm = htm  "     '//關(guān)閉自己"                  vbcrlf 
     htm = htm  "     window.opener = nothing" vbcrlf 
     htm = htm  "     window.close"                  vbcrlf 
     htm = htm  ""                                      vbcrlf 
     htm = htm  "end function"                      vbcrlf 
     htm = htm  ""                                      vbcrlf 
     htm = htm  ""  "/SCRIPT>"                  vbcrlf 
     htm = htm  ""  "/head>"                      vbcrlf 
     htm = htm  "body marginleft=0 marginright=0 onload=""exec()"">"  vbcrlf 
     htm = htm  ""                                      vbcrlf 
     htm = htm  "div id=""divFileName""     style=""display:none;"">"  file  "/div>"  vbcrlf 
     htm = htm  "div id=""divData""             style=""display:none;"">"  data  "/div>"  vbcrlf 
     htm = htm  ""                                      vbcrlf 
     htm = htm  "/body>"                              vbcrlf 
     htm = htm  "/html>"                              vbcrlf 
     dim fso,f 
     dim this_file 
             this_file = file  "-pf.hta" 
     Set fso = CreateObject("Scripting.FileSystemObject") 
     Set f = fso.OpenTextFile(this_file, 2, True) 
             f.Write htm 
     msgbox "生成文件"  this_file  "成功!",64,"生成" 


end function 


/SCRIPT> 
/head> 
body marginleft=0 marginright=0 onload="window.resizeTo 389,145 "> 
請選擇文件:input type=file id="srcFile" style="width:260px;">br>br> 
                 input type=button value="     轉(zhuǎn)換     " onclick="transfert">     input type=button value="     關(guān)閉     " onclick="window.close"> 
/body> 
/html> 

標(biāo)簽:濟(jì)南 邯鄲 廣東 新余 克拉瑪依 清遠(yuǎn) 內(nèi)江 棗莊

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《hta實(shí)現(xiàn)的二進(jìn)制文件轉(zhuǎn)換為文本》,本文關(guān)鍵詞  hta,實(shí)現(xiàn),的,二進(jìn)制,文件,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《hta實(shí)現(xiàn)的二進(jìn)制文件轉(zhuǎn)換為文本》相關(guān)的同類信息!
  • 本頁收集關(guān)于hta實(shí)現(xiàn)的二進(jìn)制文件轉(zhuǎn)換為文本的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章
    主站蜘蛛池模板: 女人午夜啪啪性刺激免费看| 欧美X??X888做受| 夫妻性生活交换| 情迷女人香| 胸好软| 《浴室狂欢》免费播放| 69vids性欧美| 超污软件下载| 91精品国产综合久久小仙女陆萱萱| 色偷偷AV一区二区三区时间停止| 小说区图片区亚洲| 非洲人与20xxxⅹ另类| 啊轻点灬太粗嗯太深了校园视频| 看黄色app| 久久久久久久久久久精品视频| 午夜爽爽影院| 国产伦精品一区二区三区四区免费| 人獸交l高H合不拢腿小黄文| 在线看片日韩无线免费| 菠萝菠萝蜜在线影院3| 日本护士色情ⅩXXX最火的一句| 深夜秘?黄网站免费观看| 另类小说亚洲| 任我爽在线视频精品凹凸精品分类| 丝袜老师好紧| 调教羞耻超短裙任务| 二人の巨乳妻美和と茜?演员| 午夜性做爰A片免费看京东| 成人免费视频???视频| 男女做污污无遮挡激烈免费| 美女大胸挤奶| 亚洲 欧美 变态 国产 另类| 西门庆潘金莲一级A片| 久久青视频| 黄色片国产| 在厨房被C到高潮A片漫画免费看| 真人啪啪XXOO动态图96式| 崇礼县| 两男一女伦流澡到高潮H漫画| 好男人资源在线观看视频免费| 淫欲的代价电影|