PhantomJS write写入

PhantomJS write写入

该方法有三个参数: 源、内容字符串/对象

  • − 要写入内容的文件。

  • 内容 − 需要写入文件的内容。

  • 字符串/对象 − 这个参数包含模式和字符集。

    • 模式 − 打开模式。由’r’、’w’、’a/+’、’b’字符组成的字符串。

    • 字符集 − 一个不区分大小写的IANA字符集名称。

语法

其语法如下 −

fs.write(path, content, 'w');

示例

以下示例展示了 write 方法的工作原理。

命令 - phantomjs write.js writemode.txt

var fs = require('fs'); 
var system = require('system'); 
var path = system.args[1]; 
var md = fs.touch(path); 

console.log("file is present : "+fs.isFile(path)); 
var n = fs.write(path, 'Hello world', 'w'); 

console.log("Content present in " +path + " are :"); 
console.log(fs.read(path)); 
phantom.exit();

上面的程序生成如下 输出 .

file is present : true 
Content present in writemode.txt are : 
Hello world

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程