最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - 'Simulate' file download in HTML5 web app - Stack Overflow

programmeradmin0浏览0评论

Say I have a webapp which executes in its entirety on the client-side. Its purpose is to act as a file conversion utility, for example converting a user's local stored word document into a PDF.

So with the user's permission, the app can read a specified local file and process it, in memory, into PDF format.

How can I get the user to 'download' the result? since the data is held in the browser's memory anyway, I do not wish to upload it to some server.

[edit]

  • No flash based solutions
  • Expected file sizes to be up to 15mb

Say I have a webapp which executes in its entirety on the client-side. Its purpose is to act as a file conversion utility, for example converting a user's local stored word document into a PDF.

So with the user's permission, the app can read a specified local file and process it, in memory, into PDF format.

How can I get the user to 'download' the result? since the data is held in the browser's memory anyway, I do not wish to upload it to some server.

[edit]

  • No flash based solutions
  • Expected file sizes to be up to 15mb
Share Improve this question edited Jan 23, 2013 at 9:56 willcode.co asked Jan 23, 2013 at 9:38 willcode.cowillcode.co 6741 gold badge7 silver badges17 bronze badges 3
  • 2 You could try giving them a link to the file, with the href pointing to a base-64 encoded data URI, perhaps? en.wikipedia/wiki/Data_URI_scheme – Michael Schuller Commented Jan 23, 2013 at 9:41
  • 1 What's wrong about stackoverflow./questions/2897619/…? Should cover your problem entirely. – aefxx Commented Jan 23, 2013 at 9:47
  • Was about to agree pletely. But I do not want to use flash at all. And I fear that data URI would be too restrictive - can I encode a 50mb file in a data URI? – willcode.co Commented Jan 23, 2013 at 9:52
Add a ment  | 

1 Answer 1

Reset to default 11

The solution for my case will be to use the HTML5 FileSaver API.

Perhaps this question should just be closed as it is effectively a duplicate of

Using HTML5/Javascript to generate and save a file

Thanks to aefxx

发布评论

评论列表(0)

  1. 暂无评论