Force download for blob created with FileWriter in JavaScript [duplicate]
Asked Answered
U

2

12

HTML5 introduces the FileWriter class. With this class you can make Blobs. (A File is an extension of a Blob.) With JavaScript you can make a Blob and for instance show it using the dataURL.

Example:

var bb = new BlobBuilder();
bb.append('some text')
var blob = bb.getBlob('text/plain');

var fr = new FileReader();
fr.onload = function(e) {
 document.location = this.result; // voila the dataURL
}
fr.readAsDataURL(blob);

But that's not good enough :) I want the newly created (text) file to be downloaded. Not opened in the same or a separate window.

Is there a way? There must be. How?

(The discussion already exists in the Google Chrome group)

UPDATE
The File API has changed, because the specs have changed (or something!?). Webkit broke backward compatibility with BlobBuilder, now called WebKitBlobBuilder. Same example differently on jsFiddle

UPDATE
Creating Blobs now works differently again (no more append()):

blob = new Blob(['some text'], {type: 'text/plain'});
Unconscionable answered 19/12, 2010 at 21:22 Comment(0)
M
13

The download tag in combination with the Blob object does the trick (at least in the latest chrome versions). See this fiddle:

var blob = new Blob(['blaaaaat'], {type: 'text/plain'});
$('a').attr("href", window.URL.createObjectURL(blob));
$('a').attr("download", "woeii.txt");

F̶i̶r̶e̶f̶o̶x̶ ̶d̶o̶e̶s̶n̶'̶t̶ ̶s̶u̶p̶p̶o̶r̶t̶ ̶t̶h̶e̶ ̶d̶o̶w̶n̶l̶o̶a̶d̶ ̶a̶t̶t̶r̶i̶b̶u̶t̶e̶ though (it does support the Blob object). Discussions about implementation of the download attribute in Firefox are available here:

Edit: The download attribute is now supported by the latest firefox versions as of 10/3/2013

Meaning answered 27/2, 2013 at 14:43 Comment(5)
wrong fiddle link, I meant this one: jsfiddle.net/NSCJHMeaning
That's the one I've been using. (I don't use Firefox.) I didn't know Firefox didn't support that yet.Unconscionable
Nice! I had no idea about the download attribute.Paralyze
Is there a way to trigger the download without waiting for the user to click the link? I have a button the user clicks that produces the data, which I want to then download immediately. Just doing $('a').click() in your fiddle didn't seem to work.Godric
@BenDilts, just came across this answer which may work for you: https://mcmap.net/q/1009760/-looking-to-save-a-client-side-generated-binary-file-to-client-machineKarlotte
C
2

Here is a pure Javascript solution for creating a text blob and download as text file

var fileContent = 'This is sample text file';
var fileName = 'sampleFile.txt';

const blob = new Blob([fileContent], { type: 'text/plain' });
const a = document.createElement('a');
a.setAttribute('download', fileName);
a.setAttribute('href', window.URL.createObjectURL(blob));
a.click(); // EXECUTING CLICK EVENT WILL AUTO-DOWNLOAD THE FILE
Chkalov answered 19/6, 2019 at 9:35 Comment(2)
The download attribute doesn't take a filename anymore. It used to, long ago, but now it's just a boolean attribute. See MDN. -- edit: or maybe it does..? I've never seen it work. Does it?Unconscionable
Yes it does. From the page you linked: "If the attribute has a value, it is used as the pre-filled file name in the Save prompt (the user can still change the file name if they want)."Largo

© 2022 - 2024 — McMap. All rights reserved.