Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

[EDIT]: I didn't mention it upfront, so the posters who answered "Flash" are valid enough, but part of what I'm doing is an attempt to highlight what can be done with pure HTML5... so Flash is right out in my case. (Though it's a perfectly valid answer for anyone doing a "real" web app.) That being the case it looks like I'm out of luck unless I want to involve the server. Thanks anyway!

share|improve this question
2  
You could consider changing the accepted answer, there seems to be a purely HTML way now – Pekka 웃 Jan 23 at 10:59

6 Answers

up vote 18 down vote accepted

Take a look at Doug Neiner's Downloadify which is a Flash based JavaScript interface to do this.

Downloadify is a tiny JavaScript + Flash library that enables the generation and saving of files on the fly, in the browser, without server interaction.

share|improve this answer
2  
For most people, this is probably the answer that they'll need. So even though it doesn't meet my specific requirements (as explained above) I'm marking it as the accepted answer. – Toji May 24 '10 at 16:16
@Toji ah, I see. Maybe re-ask and re-phrase under the HTML 5 banner and tag accordingly? That would be likely to attract those users who know about that specific field (still a comparably small crowd right now, I suppose). I'm pretty sure it can be done in HTML 5 but I have no idea how. – Pekka 웃 May 24 '10 at 16:19
Has the downloadify.info Downloadify domain been purchased/transferred, and if so is there a new location? The present site seems completely unrelated to the answer given. – JonathanHayward May 27 '11 at 15:01
@Jonathan yeah, the site went down. The source is still available here: github.com/dcneiner/Downloadify – Pekka 웃 May 27 '11 at 15:04
downloadify was compiled for online use, what about offline use that don't need internet connectifity? – Ariona Rian Feb 19 '12 at 17:30
show 5 more comments

OK, creating a data:URI definitely does the trick for me, thanks to Matthew and Dennkster pointing that option out! Here is basically how I do it:

1) get all the content into a string called "content" (e.g. by creating it there initially or by reading innerHTML of the tag of an already built page).

2) Build the data URI:

uriContent = "data:application/octet-stream," + encodeURIComponent(content);

There will be length limitations depending on browser type etc., but e.g. Firefox 3.6.12 works until at least 256k. Encoding in Base64 instead using encodeURIComponent might make things more efficient, but for me that was ok.

3) open a new window and "redirect" it to this URI prompts for a download location of my JavaScript generated page:

 newWindow=window.open(uriContent, 'neuesDokument');

That's it.

share|improve this answer
13  
If you want to avoid using a popup, which can get blocked, you can set the location.href to the content. location.href = uriContent. – Xeon06 Oct 3 '11 at 16:41
7  
Hi i tried this but it downloads the file as .part file. How can i set the filetype? – Sedat Başar Nov 15 '11 at 8:09
1  
The data uri scheme supports setting the mime type, wikipedia's article has some examples en.wikipedia.org/wiki/Data_URI_scheme#Examples – Boushley Mar 23 '12 at 3:51
2  
@SedatBaşar Data URIs don't support setting a file name, you have to rely on the browser setting an appropriate extension using the mime type. But if the mime type can rendered by the browser it won't download it, but it will display it. There are some other ways to do this, but neither work in IE<10. – panzi May 19 '12 at 18:01
1  
@panzi: What are those other ways you are referring to? – Randomblue Aug 23 '12 at 20:31
show 2 more comments

HTML5 defines the FileSaver interface and the window.saveAs(blob, filename) method. Neither is supported by any browser right now. But there is a compatibility library called FileSaver.js that adds this function to most modern browsers (not Internet Explorer). But Internet Explorer 10 supports a navigator.msSaveBlob(blob, filename) method (MSDN). However, as opposite to window.saveAs this lacks any callbacks or a way to abort saving.

I wrote a blog posting with more details about this problem.

share|improve this answer
What about blocking popups? Behaviour of this library is similiar to @Nøk's solution. Plain text in Firefox is opened in a new. Only Chrome tries to save it, but it changes the extension (I need a dotfile with no extension). – ciembor Aug 19 '12 at 0:21
@ciembor the (object url+)download attribute variant (which I use with chrome) lets you set a filename. It works for me in chrome. – panzi Aug 19 '12 at 19:29
@ciembor aha and a popup is not blocked if a click directly caused it. – panzi Aug 19 '12 at 19:29
The FileSaver interface is now supported in the latest version of Chrome. – JustinBull Oct 4 '12 at 21:54
@JustinBull Not the latest stable version, I presume? – panzi Oct 5 '12 at 22:24
show 4 more comments

You can generate a data URI. However, there are browser-specific limitations.

share|improve this answer
This is interesting. I'll look into it more when I get a chance. Thanks! – Toji May 24 '10 at 16:15
i'd be interested in seeing if this approach works – Claudiu May 24 '10 at 21:18
Can you go into more detail? – quantumpotato Dec 24 '11 at 23:58
@quantumpotato, actually generating the URL is a little tricky to explain. All the nitty gritty is in RFC 2397. You can use tools like this for testing. Then, for your real app, you can search for a data URI or base 64 library for your language. If you don't find it, feel free to ask a follow up question. Some of the browser-specific limitations are given in the Wikipedia article. For example, IE limits the length and type (e.g. not text/html). – Matthew Flaschen Jan 1 '12 at 6:51
Generating data URLs isn't that tricky: "data:text/plain;charset=UTF-8,"+encodeURIComponent(text) But yes, IE limits the size of data URLs to an unusable amount and it does not support them for things like window.open(...) or iframes (I think). – panzi Jan 10 at 18:28
show 1 more comment

Here is a link to the data URI method Mathew suggested, it worked on safari, but not well because I couldn't set the filetype, it gets saved as "unknown" and then i have to go there again later and change it in order to view the file...

http://www.nihilogic.dk/labs/canvas2image/

share|improve this answer

You can use localStorage. This is the Html5 equivalent of cookies. It appears to work on Chrome and Firefox BUT on Firefox, I needed to upload it to a server. That is, testing directly on my home computer didn't work.

I'm working up HTML5 examples. Go to http://faculty.purchase.edu/jeanine.meyer/html5/html5explain.html and scroll to the maze one. The information to re-build the maze is stored using localStorage.

I came to this article looking for HTML5 JavaScript for loading and working with xml files. Is it the same as older html and JavaScript????

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.