井底之蛙

好记性不如烂笔头.菜鸟笔记.

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

(1)读取文本文件时须添加上'encoding'才能输出可读的内容.

02.txt

hello,world!

nodejs_readfile.js

var fs = require('fs');
fs.readFile('./02.txt', {'encoding':'utf8'},function(err,data){
	if(err) throw err;
	console.log(data);
});

(2)

 

posted on 2015-12-06 09:01  井底之蛙丶  阅读(216)  评论(0)    收藏  举报