① 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。