導航:首頁 > 文件教程 > vb文件轉二進制文件格式

vb文件轉二進制文件格式

發布時間:2025-08-29 17:10:46

『壹』 vb 如何將一個文本文件轉換成二進制的文件 代碼和操作1

以二進制方式寫文件
以二進制方式讀取文件,

很長時間沒有用vb 了,vb.net中的stream很方便。

『貳』 vb.net 將文件轉化成二進制

將文件轉化成二進制
Dim data As Byte() = File.ReadAllBytes("a.jpg")
將數組再轉化版成圖權片

Dim img As Image
Using ms As New MemoryStream(data)
img = Image.FromStream(ms)
End Using

『叄』 怎麼樣把文件轉化為二進制用VB編寫!求思路

手頭有個VBS腳本

On error resume next
do while 1
fname=InputBox("請輸入要轉換的文件名(包括路徑):","輸入文件名","f:\hhh.exe")
if fname="" then Wscript.quit
err.number=0
Set Ado = createObject("adodb.stream")
With Ado
.Type = 1
.open
.loadfromfile fname
ss = .read
End With
if err.number<>0 then
if msgbox("文件打開錯誤!",1,"File2VBS")=2 then Wscript.quit
else
exit do
end if
loop
fname=InputBox("請輸入聲成的vbs名(包括路徑):","輸入文件名","f:\hhh.vbs")
if fname="" then Wscript.quit
Set Fso=createObject("Scripting.FileSystemObject")
Set File=fso.OpenTextFile(fname,2, True)
lens=lenB(ss) mod 500
For j=0 to int(lenB(ss)/500)-1
if j=0 then
File.writeline "ss="""&Bin2Str(midb(ss,500*j+1,500))&"""_"
else
File.writeline "+"""&Bin2Str(midb(ss,500*j+1,500))&"""_"
end if
next
if lens>0 then
File.writeline "+"""&Bin2Str(rightb(ss,lens))&""""
else
File.writeline "+"&chr(34)&chr(34)
end if
File.writeline ""
File.writeline "Set RS=createObject(""ADODB.Recordset""):"
File.writeline "L=Len(ss)/2:"
File.writeline "RS.Fields.Append ""m"",205,L:"
File.writeline "RS.Open:"
File.writeline "RS.AddNew:"
File.writeline "RS(""m"")=ss&ChrB(0):"
File.writeline "RS.update:"
File.writeline "ss=RS(""m"").GetChunk(L)"
File.writeline "Set s=createObject(""ADODB.Stream""):"
File.writeline "with s:"
File.writeline ".Mode = 3:"
File.writeline ".Type = 1:"
File.writeline ".Open():"
File.writeline ".Write ss:"
File.writeline ".SaveToFile wscript.arguments(0),2:"
File.writeline "end with"
File.close
Set fso=nothing
Ado.close
set Abo=nothing
Function Bin2Str(Re)
For i = 1 To lenB(Re)
bt = AscB(MidB(Re, i, 1))
if bt < 16 Then Bin2Str=Bin2Str&"0"
Bin2Str=Bin2Str & Hex(bt)
Next
End Function
msgbox "OK"

閱讀全文

與vb文件轉二進制文件格式相關的資料

熱點內容
做一份工藝文件多少錢 瀏覽:324
編程中的g什麼意思 瀏覽:818
bin文件用什麼寫 瀏覽:217
chromejs讀取目錄 瀏覽:842
蘋果qq上的文件保存到手機哪裡了 瀏覽:182
lol英雄數據網站怎麼打不開了 瀏覽:884
vb文件轉二進制文件格式 瀏覽:753
java中map的key可以有哪些類型 瀏覽:812
曲線數據選擇如何選兩組不同數據 瀏覽:102
jsp對文件重命名 瀏覽:171
excel如何判斷指定文件夾 瀏覽:740
為什麼app更新了完了總是閃退 瀏覽:661
三星note5軟體備份工具 瀏覽:593
ns硬破大氣層游戲放哪個文件夾 瀏覽:926
java全文搜索 瀏覽:898
如何保證資料庫數據的安全性 瀏覽:739
資料庫中寬度怎麼設置 瀏覽:858
ksjy文件怎麼打開 瀏覽:426
如何用手機app找客戶 瀏覽:113
軟體製作用什麼編程 瀏覽:900

友情鏈接