我想在移动设备iOs或android上下载mp3文件,因为我不想每次都从服务器下载。 我编写简单的代码,但无法正常工作。文件大小太大,因为没有编码,保存后我再也无法播放了。
请帮助并抱歉英语不好。
private var sound:Sound;
public function loadSound(tmpUrl:String):void
{
sound = new Sound();
sound.addEventListener(Event.COMPLETE,onLoadSuccessSound, false, 0, true);
sound.load(new URLRequest(tmpUrl));
}
protected function onLoadSuccessSound(event:Event):void
{
var fileData:ByteArray = new ByteArray();
sound.extract(fileData, sound.bytesTotal);
var file:File = new File(File.applicationStorageDirectory + "\\ppp.mp3");
var fs:FileStream = new FileStream();
fs.open(file, FileMode.WRITE);
fs.writeBytes(fileData,0,fileData.length);
fs.close();
}
答案 0 :(得分:0)
基本上答案是使用URLStream和FileStream。
问题非常普遍,例如Download a file with Adobe AIR和AS3: URLStream saving files to desktop?