首页 > 代码库 > js读写txt文件
js读写txt文件
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="http://www.mamicode.com/Write!" onclick="writeFile(‘F:/Appserv/www/12.txt‘,document.getElementByIdx_x(‘in‘).value);"/><br><br>
<input type="button" value="http://www.mamicode.com/Read!" onclick="document.getElementByIdx_x(‘show‘).value=http://www.mamicode.com/readFile(‘F:/Appserv/www/12.txt‘);"/><br>
<textarea id="show" name="show" cols="100" rows="20" >
</textarea>
</html>
<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="http://www.mamicode.com/Write!" onclick="writeFile(‘F:/Appserv/www/12.txt‘,document.getElementByIdx_x(‘in‘).value);"/><br><br>
<input type="button" value="http://www.mamicode.com/Read!" onclick="document.getElementByIdx_x(‘show‘).value=http://www.mamicode.com/readFile(‘F:/Appserv/www/12.txt‘);"/><br>
<textarea id="show" name="show" cols="100" rows="20" >
</textarea>
</html>
js读写txt文件
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。