var imgFile : File= File.applicationStorageDirectory.resolvePath(<file name>);
var stream: FileStream = new FileStream();
stream.open( imgFile, FileMode.WRITE);
stream.writeBytes( encodedContent, 0, encodedContent.length ); //encodedContent is byte array to save in afile
stream.close();
读取文件的代码
var imgFile : File= File.applicationStorageDirectory.resolvePath(<file name>);
2条答案
按热度按时间2izufjch1#
用于保存文件的代码
读取文件的代码
wlsrxk512#
您可以尝试使用缓存来保存SWF文件本身,除非您希望将文件保存在SWF中。