gpt4 book ai didi

node.js - 如何在 JavaScript 中创建一个保存数组内容的 txt 文件?

转载 作者:太空宇宙 更新时间:2023-11-03 21:59:31 26 4
gpt4 key购买 nike

我有几个数组,其中包含我想要导出的数据,每个数组都导出到一个 txt 文件,以便使用 MATLAB 进行分析。

假设我的数组是:

var xPosition = [];

// some algorithm that adds content to xPosition

// TODO: export array into a txt file let's call it x_n.txt

每行存储数组的每个元素会很棒。

最佳答案

我在 post 中找到了解决我的问题的指南。以下代码是我最终使用的代码:

var fs = require('fs');

var xPosition = [];

// some algorithm that adds content to xPosition

var file = fs.createWriteStream('./positions/x_n.txt');

file.on('error', function(err) { /* error handling */ });
xPosition.forEach(function(v) { file.write(v + '\n'); });
file.end();

关于node.js - 如何在 JavaScript 中创建一个保存数组内容的 txt 文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30794353/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com