How to read and write into file using JavaScript?

后端 未结 17 2719
孤街浪徒
孤街浪徒 2020-11-22 02:00

Can anybody give some sample code to read and write a file using JavaScript?

17条回答
  •  孤独总比滥情好
    2020-11-22 02:31

    here's the mozilla proposal

    http://www-archive.mozilla.org/js/js-file-object.html

    this is implemented with a compilation switch in spidermonkey, and also in adobe's extendscript. Additionally (I think) you get the File object in firefox extensions.

    rhino has a (rather rudementary) readFile function https://developer.mozilla.org/en/Rhino_Shell

    for more complex file operations in rhino, you can use java.io.File methods.

    you won't get any of this stuff in the browser though. For similar functionality in a browser you can use the SQL database functions from HTML5, clientside persistence, cookies, and flash storage objects.

提交回复
热议问题