码迷,mamicode.com
首页 > Web开发 > 详细

js读写txt文件

时间:2016-11-03 09:34:22      阅读:691      评论:0      收藏:0      [点我收藏+]

标签:stream   files   word   fstream   keyword   return   cti   end   读文件   

 

view plain
<script language="javascript" type="text/javascript">


//读文件
function readFile(filename){
var fso = new ActiveXObject("Scripting.FileSystemObject");
var f = fso.OpenTextFile(filename,1);
var s = "";
while (!f.AtEndOfStream)
s += f.ReadLine()+"\n";
f.Close();
return s;
}

//写文件
function writeFile(filename,filecontent){
var fso, f, s ;
fso = new ActiveXObject("Scripting.FileSystemObject");
f = fso.OpenTextFile(filename,8,true);
f.WriteLine(filecontent);
f.Close();
alert(‘ok‘);
}

</script>
<html>
<input type="text" id="in" name="in" />
<input type="button" value="Write!" onclick="writeFile(‘F:/Appserv/www/12.txt‘,document.getElementByIdx_x(‘in‘).value);"/><br><br>
<input type="button" value="Read!" onclick="document.getElementByIdx_x(‘show‘).value=readFile(‘F:/Appserv/www/12.txt‘);"/><br>
<textarea id="show" name="show" cols="100" rows="20" >
</textarea>
</html>

js读写txt文件

标签:stream   files   word   fstream   keyword   return   cti   end   读文件   

原文地址:http://www.cnblogs.com/Nicolasap/p/6025196.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!