javascript 讀寫txt檔案

2021-05-24 14:39:31 字數 576 閱讀 2550

//讀檔案

var fso, f1, ts;

var forreading = 1;

fso = new activexobject("scripting.filesystemobject");

ts = fso.opentextfile(document.all.attachfile.value/*此處為含全部路徑的檔名*/, forreading);

document.all.mailbdy.value=ts.readall();

ts.close();

//寫檔案

var  title = document.getelementbyid("title").value;//檔名

var   fso=new   activexobject("scripting.filesystemobject");

var   f=fso.createtextfile("c://"+title+".nc",true); //可隨意選擇字尾名

f.write(document.getelementbyid("babala").value);

f.close();

讀寫TXT檔案

1 file.writealltext 寫入內容,可以指定編碼 寫入文字使用 file.writealltext 檔案路徑 例如 d 文字.txt 待寫入文字 public static void writetxtbyfiletext string filepath,string msg 2 fil...

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...

C 讀寫txt檔案

首先windows 7中的txt文件中,預設每行末尾會加 r 和 n 表示此行結束。回車表示游標移到行首,換行表示游標移至下一行,所以二者要配合使用。因此利用string的split函式讀取txt檔案是就需要額外加入換行符和回車符作為分隔符。例外一點就是split函式讀取至每行結束時,雖然行尾換行符...