引用:
open "f:\new.txt " for input as #1
dim b as string
b = strconv(inputb(lof(1), 1), vbunicode)
'open 開啟檔案的路徑 for 開啟方式(這裡是讀取,下面的是寫入和建立) as 檔案號
close #1
'以上為讀取檔案,以下為寫入檔案
open "f:\new1.txt " for output as #2
print #2, b
close #2
msgbox "完畢 "
注釋: 你把檔案複製到我上面二個的位址,就可以看到效果,把你要讀取的檔案設定為 "f:\new.txt "或者自己改一下位址,改為你的檔案位址進行讀取
詳細參考為
你可以對上面的方法進行改造,比如使用strconv後,對字串進行修改,以達到更完美的對檔案流的修改,然後寫入,以上只是個簡單的例子
讀取這類檔案有三種方法:
1.line input 一行一行的讀取
2.input$(n,#1) 讀取n個
3.input 一次性讀取
VB讀寫檔案
vb讀寫檔案要用到以下語句 1 open語句開啟檔案。2 讀檔案使用line input input 以上為文字方式 和get 以上為二進位制方式 3 寫檔案使用print write 以上為文字方式 和put 以上為二進位制方式 4 close語句關閉檔案 5 二進位制方式下移動檔案位置使用see...
VB讀寫TXT檔案
private subcommand1 click 讀檔案 open d a.txt for inputas 1dim lines asstring dimnextline asstring dimi asinteger dowhile noteof 1 onerror resume next li...
vb6 讀寫檔案
write file dim nhandle as integer,fname as string fname d 1.txt nhandle freefile open fname for output as nhandle print nhandle,0 print nhandle,2 clos...