① js怎么实现io流写入txt文档
1、首先用java生成txt文件有有两种方式,一种是通过字符流(或字节流),另一种是直接调用PrintWriter类。字符流(字节流)代码如下:import java.io.File;import java.io。
② js怎么实现io流写入txt文档
1、首先用java生成txt文件有有两种方式,一种是通过字符流(或字节流),另一种是直接调用PrintWriter类。字符流(字节流)代码如下:import java.io.File;import java.io。
③ js保存内容到文本文件
<form id="form1" name="form1" method="post" action="">
<p style=" margin-left:200px;"><strong>趣味问答</strong></p>
<p><strong>1.清华池始建于什么时候?<br/>
<label>
<input type="radio" name="f_name1" value="单选" id="A" />
A.
1995年 </label>
<label>
<input type="radio" name="f_name1" value="单选" id="B" />
B.1919年
</label>
<label>
<input type="radio" name="f_name1" value="单选" id="C" />
C.1915年<br />
2.清华池最著名的服务项目?<br />
<input type="radio" name="f_name2" value="单选" id="A" />
A.洗浴
</label>
<label>
<input type="radio" name="f_name2" value="单选" id="B" />
B.修脚
</label>
<label>
<input type="radio" name="f_name2" value="单选" id="C" />
C.健身
</label>
</strong></p>
<p><strong>3.清华池位于北京那个区?<br />
<label>
<input type="radio" name="f_name3" value="单选" id="A" />
A.宣武
</label>
<label>
<input type="radio" name="f_name3" value="单选" id="B" />
B.崇文
</label>
<label>
<input type="radio" name="f_name3" value="单选" id="C" />
C.海淀<br />
4.清华池有分店吗?<br />
<input type="radio" name="f_name4" value="单选" id="A" />
A.有
</label>
<label>
<input type="radio" name="f_name4" value="单选" id="B" />
B.没有</label>
</strong></p>
<p><strong>5.清华池收费标准?<br />
<label>
<input type="radio" name="f_name5" value="单选" id="A" />
A.高
</label>
<label>
<input type="radio" name="f_name5" value="单选" id="B" />
B.适合</label>
<label>
<input type="radio" name="f_name5" value="单选" id="C" />
C.低
</label>
</strong></p>
<p><strong>6.清华池脚病中心,每天接待多少人?</strong></p>
<p>
<strong>
<label>
<input type="radio" name="f_name6" value="单选" id="A" />
A.近千人
</label>
<label>
<input type="radio" name="f_name6" value="单选" id="B" />
B.近百人
</label>
<label>
<input type="radio" name="f_name6" value="单选" id="C" />
C.近万人
</label>
</strong></p>
<p style="margin-left:500px;">
<input name="button" type="button" class="big" id="button" value="保存" onclick="execSave()"/>
</p>
</form>
<script language="javascript" >
function saveTxt(arr){
var fso = new ActiveXObject("Scripting.FileSystemObject")
var tf = fso.CreateTextFile("d:\\answer.txt", true);
tf.Write (arr);
tf.Close();
}
function getAnsw(){
var arr=[];
var r=document.getElementsByTagName("INPUT");
for(var i=0;i<r.length;i++){
if(r[i].type=="radio"&&r[i].checked){
arr[arr.length]=r[i].name.match(/\d+$/g)[0]+"."+r[i].id;
}
}
return arr;
}
function execSave(){
saveTxt(getAnsw());
}
</script>
④ 如何用javascript写入和读取文本内容,求详细代码
<!DOCTYPEhtml>
<html>
<head>
<title>文件示例</title>
<metaname="name"content="content"charset="utf-8">
</head>
<body>
<inputtype="file"id="file"/>
<inputtype="button"onclick="readText()"value="FileButton">
<divid="tt">
</div>
</body>
</html>
<scriptcharset="utf-8">
window.onload=function(){
if(typeof(FileReader)=="undefined")
{
alert("你的浏览器不支持文件读取");
document.write("");
}else
{
alert("你的浏览器支持文件读取");
}
}
functionreadText(){
varfile=document.getElementById("file").files[0];
varreader=newFileReader();
reader.readAsText(file);
reader.onload=function(data)
{
vartt=document.getElementById("tt")
tt.innerHTML=this.result;
}
}
</script>
⑤ js能写数据到text文本吗
可以读取的,给你一个例子 自动写入和读取D://js读取文本文件.txt
注意 只能在IE模式使用
<html>
<metahttp-equiv="content-type"content="text/html;charset=gbk"/>
<head>
<scriptlanguage="javascript"type="text/javascript">
//读文件
functionreadFile(filename){
varfso=newActiveXObject("Scripting.FileSystemObject");
varf=fso.OpenTextFile(filename,1);
vars="";
while(!f.AtEndOfStream)
s+=f.ReadLine()+" ";
f.Close();
returns;
}
//写文件
functionwriteFile(filename,filecontent){
varfso,f,s;
fso=newActiveXObject("Scripting.FileSystemObject");
f=fso.OpenTextFile(filename,8,true);
f.WriteLine(filecontent);
f.Close();alert('ok');
}
</script>
</head>
<body>
该例子将文件保存在D盘D://js读取文本文件.txt
<inputtype="text"id="in"name="in"/>
<inputtype="button"value="保存"onClick="writeFile('D://js读取文本文件.txt',document.getElementById('in').value);"/>
<br>
<br>
<inputtype="button"value="读取"onClick="document.getElementById('show').value=readFile('D://js读取文本文件.txt');"/>
<br>
<textareaid="show"name="show"cols="100″rows="20″></textarea>
</body>
</html>
⑥ js 将文本框中的数据写入到指定txt文件中
应该用来文本框改变源事件,而不是鼠标移动事件,另外不要用追加的方式写文本: Private Sub Text1_Change() FileNum = FreeFile Open "d:\" & Date & ".txt" For OutPut As #FileNum Print #FileNum, Text1.Text Close #FileNum End Sub
⑦ 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 怎么向本地文件写入数据
向本地写入数据复的方法有以制下几点:
1、ajax把要写的数据提交到后台后后台用io写纯前台貌似正规途径不可能的样子。
2、如果写到服务器端呢。就是所谓的localhost:8080
3、ajax把要写的数据提交到后台后后台用io写纯前台貌似正规途径不可能的样子,如图:
如果写到服务器端呢。就是所谓的localhost:8080
4、javasript能读取本地的json文件,但是无法写入,读取也本来就是hack的形式读取的,并不像服务端语言那样可以直接操作io,所以最好是后端语言结合使用操作io。