ActionScript 3 在Air AS3中将远程rss保存在桌面上
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ActionScript 3 在Air AS3中将远程rss保存在桌面上相关的知识,希望对你有一定的参考价值。
import flash.filesystem.File;
import flash.filesystem.FileMode;
import flash.filesystem.FileStream;
var file:File = File.desktopDirectory.resolvePath( "file.txt" );
var stream:FileStream = new FileStream();
var xmlLoader:URLLoader = new URLLoader();
xmlLoader.addEventListener(Event.COMPLETE, onLoaded);
function onLoaded(e:Event):void {
stream.open( file, FileMode.WRITE );
stream.writeUTFBytes(e.target.data);
stream.close();
file = null;
stream = null;
}
xmlLoader.load(new URLRequest("http://www.yourfeedurl.com/file.xml"));
以上是关于ActionScript 3 在Air AS3中将远程rss保存在桌面上的主要内容,如果未能解决你的问题,请参考以下文章
ActionScript 3 as3 air for android将应用程序文件复制到android sdcard中
Actionscript,AS3,MXML,Flex,Flex Builder,Flash Builder,Flash,AIR,Flash Player之关系
使用 ActionScript 3 从 Air 中的麦克风查找活动时,如何忽略应用程序播放的声音?
如何在 Actionscript 3 中将数据写入 XML 文件
使用AS3 Adob e AIR加载YouTube视频
ActionScript 3 AIR — 视频使眨眼跳跃