Nodejs篇一 - fs文件读取

2019-08-07  本文已影响0人  rain129

前言

使用

一. 加载fs模块

const fs = require(fs);

二. 读取文件数据(fs.readFile)

接收2个参数 fs.readFile(path, callback(error, data))

//当前目录下有个hello.txt的文件, 内容是’hello'

fs.readFile('./hello.txt', (error, data) => {
    console.log(data)  //读取成功,返回16进制的数据 <Buffer 68 65 6c 6c 6f>

})

三. toString()将16进制数据转换为人类能认识的数据

//当前目录下有个hello.txt的文件, 内容是’hello'

fs.readFile('./hello.txt', (error, data) => {
    console.log(data)  //读取成功,返回16进制的数据 <Buffer 68 65 6c 6c 6f>
    
    console.log(data.toString());  // hello

})
上一篇下一篇

猜你喜欢

热点阅读