任何有关读取和保存本地文件actionscript3 ios的代码
我不是在actionscript3中的初学者,但我在iOS开发中是bgnr
任何代码
答案 0 :(得分:0)
保存文件的代码
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>);