1 讀檔案
var fso= new activexobject("scripting.filesystemobject");
var file = fso.opentextfile("c:\\coor2.txt",1,true);
while(!file.atendofstream)
file.close();
2 寫檔案
var fso= new activexobject("scripting.filesystemobject");
fso.createtextfile("c:\\coor2.txt",true);
var writefile = fso.opentextfile("c:\\coor2.txt",8,true);
writefile.writeline(s);
3 寫excel
function initexcel()catch(e)
xls.visible=true;
xlsbook = xls.workbooks.add;
xlsheet = xlsbook.worksheets(1);
//初始化頭部
xlsheet.cells(1,1).value="lng";
xlsheet.cells(1,2).value="lat";
xlsheet.cells(1,3).value="lngoffset";
xlsheet.cells(1,4).value="latoffset";
}
function writeexcel()catch(e)
xls.visible=true;
xlsbook = xls.workbooks.add;
xlsheet = xlsbook.worksheets(1);
//初始化頭部
xlsheet.cells(1,1).value="lng";
xlsheet.cells(1,2).value="lat";
xlsheet.cells(1,3).value="lngoffset";
xlsheet.cells(1,4).value="latoffset";
for(i=0;i
JSP中Cookie的讀寫
jsp中cookie的讀寫 cookie的本質是乙個鍵值對,當瀏覽器訪問web伺服器的時候寫入在客戶端機器上,裡面記錄一些資訊。cookie還有一些附加資訊,比如網域名稱 有效時間 注釋等等。下面是乙個jsp中寫入讀取cookie的測試 在頂級網域名稱中寫入cookie,在子網域名稱中讀取,目的是實...
jsp讀寫session和cookie的方法
定義乙個session變數 session.setattribute user name joan 讀取乙個session的值 string your name session.getattribute user name 判斷乙個session是否存在應用 if string session.ge...
jsp檔案上傳
首先需要將上傳所需要的類庫引入web工程中 然後需要了解上傳表單enctype的屬性,該屬性用於設定表單遞交資料的編碼方式 他有三個值 1.aplication x www form urlencoded 這是預設值,只要用於處理少量文字資料的傳遞,在向伺服器傳送大量文字,包括非ascii字元的文字...