Flash 10: How to stream data to a local file? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T03:29:49Z http://stackoverflow.com/feeds/question/934687 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/934687/flash-10-how-to-stream-data-to-a-local-file 0 Flash 10: How to stream data to a local file? bartekb 2009-06-01T12:50:36Z 2009-07-22T17:19:43Z <p>I need something like FileStream class in Adobe AIR, but needs to work in Flash Player. I know there is FileReference#save(), but it can only save the whole file at once, which does not work if the size of the data to be saved is larger than the available memory... Is it really not possible to stream data to a local file to avoid keeping the whole data in the memory? Or maybe it is possible to append data to a local file without first reading the whole file into memory?</p> <p>I need this badly! Thanks!</p> http://stackoverflow.com/questions/934687/flash-10-how-to-stream-data-to-a-local-file/934951#934951 1 Answer by Matt W for Flash 10: How to stream data to a local file? Matt W 2009-06-01T14:01:35Z 2009-06-01T14:01:35Z <p>You're out of luck. Security restrictions don't allow this to happen outside the context of an AIR application.</p> http://stackoverflow.com/questions/934687/flash-10-how-to-stream-data-to-a-local-file/935480#935480 0 Answer by Herms for Flash 10: How to stream data to a local file? Herms 2009-06-01T16:01:25Z 2009-06-01T16:01:25Z <p>If you have a server to hit you could sort of do it by passing the data through the server.</p> <p>Use FileReference.save() and hit some URL on your server. Then, start streaming the data you want saved to the server, and then have the server just redirect that to the flash client. You'll need to write some custom handling of things on the server, and it won't be nearly as fast as just saving locally, but it's probably the only way you'll be able to do it.</p>