I’m trying to understand HTML5 API.
I’m designing the web application where the browser client need to download multiple files from server; user will perform something with the downloaded files and the application than need to save the state on user hard-rive. I understand that the browser can save these files only to its sandbox which is fine as long as the user can retrieve those files on the second time he starts the application.
Should I use BlobBuilder or FileSaver? I’m a bit lost here.
I’m trying to understand HTML5 API. I’m designing the web application where the browser
Share
I’m going to show you how to download files with the XMLHttpRequest Level 2 and save them with the FileSystem API or with the FileSaver interface.
##Downloading Files##
To download a file you will use the XMLHttpRequest Level 2 (aka XHR2), which supports cross-origin requests, uploading progress events, and uploading/downloading of binary data. In the post "New Tricks in XMLHttpRequest2" there’s plenty of examples of use of XHR2.
To download a file as a blob all you have do to is specify the
responseTypeto "blob". You can also use the types "text", "arraybuffer" or "document". The function below downloads the file in theurland sends it to thesuccesscallback:The
successcallback will receive as argument an instance of Blob that can be later modified and saved and/or uploaded to a server.##Saving Files with the FileSystem API##
As the Can i use… site points out there aren’t many browsers with support to the FileSystem API. For Firefox there’s an explanation for the lack of support. So, you will have to use Chrome to do this.
First you will have to request a storage space, it can be either temporary or persistent. You will probably want to have a persistent storage, in this case you will have request a quota of storage space upfront (some facts):
Now that you have access to the file system you can save and read files from it. The function below can save a blob in the specified path into the file system:
And to read a file by its path:
In addition to the
readAsTextmethod, according to the FileReader API you can callreadAsArrayBufferandreadAsDataURL.##Using the FileSaver##
The post "Saving Generated Files on Client-Side" explains very well the use of this API. Some browsers may need the FileSaver.js in order to have the
saveAsinterface.If you use it together with the
downloadFilefunction, you could have something like this:Of course it would make more sense if the user could visualize the image, manipulate it and then save it in his drive.
###Error Handler###
Just to fulfill the example:
##Useful links##