可读流中的visible.setEncoding()方法用于设置读取数据的编码。
用法:
readable.setEncoding( encoding )
参数:此方法接受保留编码类型的单参数编码。
返回值:它以编码形式返回数据。
下面的示例说明了Node.js中read.setEncoding()方法的使用:
范例1:
// Node.js program to demonstrate the
// readable.setEncoding() method
// Include fs module
const fs = require('fs');
// Create readable stream
const readable = fs.createReadStream("input.txt");
// Calling setEncoding method
readable.setEncoding('hex');
// Handling data event
readable.on('data', (chunk) => {
console.log(`${chunk}`);
});
// Displays that program
// is ended
console.log("Program ends!!");
输出:
Program ends!! 48656c6c6f
范例2:
// Node.js program to demonstrate the
// readable.setEncoding() method
// Include fs module
const fs = require('fs');
// Create readable stream
const readable = fs.createReadStream("input.txt");
// Calling setEncoding method
readable.setEncoding('base64');
// Handling data event
readable.on('data', (chunk) => {
console.log(`${chunk}`);
});
// Displays that program
// is ended
console.log("Program ends!!");
输出:
Program ends!! SGVs bG8=
参考: https://nodejs.org/api/stream.html#stream_readable_setencoding_encoding
相关用法
- node.js Stream writable.end()用法及代码示例
- node.js Stream readable.read()用法及代码示例
- node.js Stream readable.resume()用法及代码示例
- node.js Stream writable.setDefaultEncoding()用法及代码示例
- node.js Stream writable.cork()用法及代码示例
- node.js Stream readable.isPaused()用法及代码示例
- node.js Stream readable.pause()用法及代码示例
- node.js Stream readable.pipe()用法及代码示例
- node.js Stream writable.write()用法及代码示例
- node.js Stream transform.destroy()用法及代码示例
- node.js Stream readable.unpipe()用法及代码示例
- node.js Stream writable.destroy()用法及代码示例
- node.js Stream writable.uncork()用法及代码示例
- node.js Stream readable.destroy()用法及代码示例
注:本文由纯净天空筛选整理自nidhi1352singh大神的英文原创作品 Node.js | Stream readable.setEncoding() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。