开发者

Flash uploader that can handle >2GB files?

开发者 https://www.devze.com 2023-01-01 11:59 出处:网络
Is there an open source Flash uploader that can handle files larger than 2 GB? ASP.net implementations like SlickUpload are not an option, and开发者_如何学运维 SWFUpload (and others that I\'ve seen) d

Is there an open source Flash uploader that can handle files larger than 2 GB? ASP.net implementations like SlickUpload are not an option, and开发者_如何学运维 SWFUpload (and others that I've seen) do not handle files larger than 2 GB. Nor is requiring the user to have Java installed to run applets. This would be for both IE and Firefox.

I've seen a couple "large file transfer" sites that have a Flash uploader and claim to go past the 2GB limit (which is the limit for http uploads for most browsers) so I know it is technically possible.


By the looks of it you would need to roll your own, basically reading small chunks of the file and sending them to the server yourself.

Then code the appropriate backend to handle those chunks and put them together.

J


Some server side scripts do not allow you to upload files larger than 2GB. Usually in flash when the limit is reached on the server side then you will get an IOErrorEvent from the upload class.

As a solution you could split the big file into small zips and upload one by one... and at the ends unzip them on server side.

You should consider also that uploading a >2GB file takes some time and having the internet connection failing at 95% will mean you have to re-upload the entire file (which is not so nice).

Have fun... ! :)

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号