js写文件|怎么用JS读写本地文本文件

『壹』 js如何创建文件

用IE浏览器:

<head><scripttype="text/javascript">functioncreatTxt(){varfso,f1;varForReading=1;fso=newActiveXObject("Scripting.FileSystemObject");f1=fso.CreateTextFile("file.txt",true);f1.WriteLine("你要输入的内容");f1.WriteBlankLines(1);f1.Close();}</script></head><body><inputtype="button"value="创建txt文件"onclick="creatTxt()"/></body>

这可以自动在桌面创建一个txt文件。

fso是文件系统对象,这个一般都是用在服务器的。客户端不可能用

但楼主的想法不好,如果一个网站随意在你电脑上创建文件,例如创建一个autorun.bat在你C盘里面估计你电脑会卡到爆吧!!! 改用一些下载插件比较好吧

『贰』 js 如何向本地文件写入数据

向本地写入数据的方法有以下几点:

1、ajax把要写的数据提交到后台后后台用io写纯前台貌似正规途径不可能的样子。

2、如果写到服务器端呢。就是所谓的localhost:8080

3、ajax把要写的数据提交到后台后后台用io写纯前台貌似正规途径不可能的样子,如图:

如果写到服务器端呢。就是所谓的localhost:8080

4、javasript能读取本地的json文件,但是无法写入,读取也本来就是hack的形式读取的,并不像服务端语言那样可以直接操作io,所以最好是后端语言结合使用操作io。

『叁』 javascript怎么实现读写文件

在浏览器中抄做不到,使用javascript服务袭器端运行环境可以做到,比如可以使用node.js来做。 如:fs.writeFile('xxx.txt', 'Hello Node', function (err) { if (err) throw err; console.log('It\'s saved!');}); fs.readFile('xxx.txt', function (err, data) { if (err) throw err; console.log(data);});

『肆』 js写入文件

例子:<script language=javascript>document.write ("<marquee scrollamount='1' scrolldelay='30' direction= 'UP' onmouseover=this.stop() onmouseout=this.start() width='400' id='helpor_net' height='265' align='center' onmouseover='ik8_com.stop()' onmouseout='ik8_com.start()' Author:redriver; For more,visit:www.ik8.com>")document.write ("<p><font color='pink' face=华文行楷 size=3> ")document.write ("<p> 小时候的梦想")document.write ("<p> 从来就不曾遗忘")document.write ("<p> 找个世上最美的新娘")document.write ("<p> 陪你到地久天长")document.write ("<p> 爱你到地老天荒")document.write ("<p> 用我温柔的心带你一起飞翔")document.write ("<p> 我想打开心房")document.write ("<p> 让你在心中回荡")document.write ("<p> 拥有每个梦你的夜晚")document.write ("<p> 当接触你的眼光")document.write ("<p> 我的心地旋天转")document.write ("<p> 意乱情迷的我为你痴狂")document.write ("</font>")document.write ("</marquee> ")</script>

『伍』 js文件的编写

是的。内嵌式就可以这样写了。还需要写一个触发事件。完整回的答比如:<script>function displaymessage(){alert("Hello World!");}</script><a href="#" onclick="displaymessage()">Display Message</a>

『陆』 js怎么实现io流写入txt文档

1、首先用java生成txt文件有有两种方式,一种是通过字符流(或字节流),另一种是直接调用PrintWriter类。字符流(字节流)代码如下:import java.io.File;import java.io。

『柒』 js创建文件并向文件里写东西

js or jsp?javaScript 没有可能写本地文件;jsp 写入路径存在吗? ${pageContext.request.contextPath}/sss/logs/system ???

『捌』 怎么用JS读写本地文本文件

//读文件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();

『玖』 怎么编写和调用js文件

需要准备的材料分别有:电脑、html编辑器、浏览器。

1、首先,打开html编辑器,内新建html文件,例如:容index.html,填充问题基础代码。

『拾』 js 怎么向本地文件写入数据

向本地写入数据复的方法有以制下几点:

1、ajax把要写的数据提交到后台后后台用io写纯前台貌似正规途径不可能的样子。

2、如果写到服务器端呢。就是所谓的localhost:8080

3、ajax把要写的数据提交到后台后后台用io写纯前台貌似正规途径不可能的样子,如图:

如果写到服务器端呢。就是所谓的localhost:8080

4、javasript能读取本地的json文件,但是无法写入,读取也本来就是hack的形式读取的,并不像服务端语言那样可以直接操作io,所以最好是后端语言结合使用操作io。


赞 (0)