Using Javascript to generate and save a file

Posted by Toji on Stack Overflow See other posts from Stack Overflow or by Toji
Published on 2010-05-24T14:16:34Z Indexed on 2010/05/24 14:21 UTC
Read the original article Hit count: 256

Filed under:
|

I've been fiddling with WebGL lately, and have gotten a Collada reader working. Problem is it's pretty slow (Collada is a very verbose format), so I'm going to start converting files to a easier to use format (probably JSON). Thing is, I already have the code to parse the file in Javascript, so I may as well use it as my exporter too! The problem is saving.

Now, I know that I can parse the file, send the result to the server, and have the browser request the file back from the server as a download. But in reality the server has nothing to do with this particular process, so why get it involved? I already have the contents of the desired file in memory. Is there any way that I could present the user with a download using pure javascript? (I doubt it, but might as well ask...)

And to be clear: I am not trying to access the filesystem without the users knowledge! The user will provide a file (probably via drag and drop), the script will transform the file in memory, and the user will be prompted to download the result. All of which should be "safe" activities as far as the browser is concerned.

© Stack Overflow or respective owner

Related posts about JavaScript

Related posts about download