将Json对象导出到文本文件

时间:2015-11-18 12:36:14

标签: javascript json fwrite

我正在尝试编写Json对象(JsonExport),我想将其内容写入文本文件。

我使用max4live将数据从Audio DAW导出到Json以便导出到服务器,但之后我想在文本文件中看到整个Json对象:

 var txtFile = "test.txt";
 var file = new File(txtFile);
 var str = JSON.stringify(JsonExport);


 file.open("write"); // open file with write access
 file.write(str);
 file.close();

编译器运行时没有错误,但我无法获取文本文件。我已经使用了一些我的目录路径,没有。

知道发生了什么事吗?感谢

3 个答案:

答案 0 :(得分:11)

如果您有权访问现有文件,只需链接即可。您可以指定下载的文件名是什么:

<a href="path/to/file.txt" download="example.json">
    Download as JSON
</a>

如果需要,您也可以写出dataURI

 //Get the file contents
 var txtFile = "test.txt";
 var file = new File(txtFile);
 var str = JSON.stringify(JsonExport);

 //Save the file contents as a DataURI
 var dataUri = 'data:application/json;charset=utf-8,'+ encodeURIComponent(str);

 //Write it as the href for the link
 var link = document.getElementById('link').href = dataUri;

然后只需为链接指定ID和默认href

<a href="#" id="link" download="example.json">
    Download as JSON
</a>

答案 1 :(得分:5)

最后我明白了!它通过改变这样的几个参数来起作用:

   var txtFile = "/tmp/test.txt";
   var file = new File(txtFile,"write");
   var str = JSON.stringify(JsonExport);

   log("opening file...");
   file.open(); 
   log("writing file..");
   file.writeline(str);
   file.close();

我的目录路径不允许,所以我必须将它保存在/ tmp目录中。 谢谢大家!

答案 2 :(得分:4)

我知道这个问题已经接受了答案,但是我认为我的答案可以帮助某人。因此,问题是将Json数据导出到文本文件。执行以下代码后,浏览器将下载文件。

const filename = 'data.json';
const jsonStr = JSON.stringify(JsonExport);

let element = document.createElement('a');
element.setAttribute('href', 'data:text/plain;charset=utf-8,' + encodeURIComponent(jsonStr));
element.setAttribute('download', filename);

element.style.display = 'none';
document.body.appendChild(element);

element.click();

document.body.removeChild(element);