直接讀硬盤上aa.txt內(nèi)容
var http = require('http');
var optfile = require('./models/optfile');
http.createServer(function (request, response) {
response.writeHead(200, {'Content-Type': 'text
ml; charset=utf-8'});
if(request.url!=="/favicon.ico"){ //清除第2此訪問
console.log('訪問');
response.write('hello,world');
//optfile.readfile("G:
\\www\\nodejs\\one\\models\\aa.txt");
optfile.readfileSync("G:
\\www\\nodejs\\one\\models\\aa.txt");
response.end('hell,世界');//不寫則沒有http協(xié)議尾
}
}).listen(8000);
console.log('Server running at http://127.0.0.1:8000/');
optfile.js
//兩種讀取文件方式,同步和異步
var fs= require('fs');
module.exports={
readfile:function(path){ //異步執(zhí)行
fs.readFile(path, function (err, data) {
if (err) {
console.log(err);
}else{
console.log(data.toString());
}
});
console.log("異步方法執(zhí)行完畢");
},
readfileSync:function(path){ //同步讀取
var data = fs.readFileSync(path,'utf-8');
//console.log(data);
console.log("同步方法執(zhí)行完畢");
return data;
}
}
潮安網(wǎng)站建設(shè)公司創(chuàng)新互聯(lián)公司,潮安網(wǎng)站設(shè)計制作,有大型網(wǎng)站制作公司豐富經(jīng)驗。已為潮安1000多家提供企業(yè)網(wǎng)站建設(shè)服務(wù)。企業(yè)網(wǎng)站搭建\成都外貿(mào)網(wǎng)站制作要多少錢,請找那個售后服務(wù)好的潮安做網(wǎng)站的公司定做!
教程學(xué)習(xí)地址:
http://study.163.com/course/introduction/1003228034.htm#/courseDetail
本文名稱:node.js學(xué)習(xí)筆記之讀文件
瀏覽路徑:http://www.chinadenli.net/article0/gcsooo.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供服務(wù)器托管、網(wǎng)站維護、網(wǎng)站設(shè)計、虛擬主機、網(wǎng)站排名、企業(yè)建站
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)