代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
AS
】
异步读取文件
作者:
芷君
/ 发布于
2014/11/4
/
1379
// Imports import flash.filesystem.FileMode; import flash.filesystem.FileStream; import flash.filesystem.File; import flash.events.ProgressEvent; import flash.events.Event; // Declare the FileStream and String variables private var _fileStream:FileStream; private var _fileContents:String; private function onCreationComplete():void // Fired when the application has been created { var myFile:File = File.appResourceDirectory; // Create out file object and tell our File Object where to look for the file myFile = myFile.resolve("mySampleFile.txt"); // Point it to an actual file _fileStream = new FileStream(); // Create our file stream _fileStream.addEventListener(ProgressEvent.PROGRESS, onFileProgress); // Add our the progress event listener _fileStream.addEventListener(Event.COMPLETE, onFileComplete); // Add our the complete event listener _fileStream.openAsync(myFile, FileMode.READ); // Call the openAsync() method instead of open() } private function onFileProgress(p_evt:ProgressEvent):void // Event handler for the PROGRESS Event { _fileContents += _fileStream.readMultiByte(_fileStream.bytesAvailable, "iso-8859-1"); // Read the contens of the file and add to the contents variable fileContents_txt.text = _fileContents; // Display the contents. I've created a TextArea on the stage for display } private function onFileComplete(p_evt:Event):void // Event handler for the COMPLETE event { _fileStream.close(); // Clean up and close the file stream }
试试其它关键字
异步读取
同语言下
.
C语言代码统计工具
.
排序集合中的元素
.
显示和隐藏隐含文件
.
ActionScript将颜色转换成16进制
.
把应用程序标题设置为版本号
.
异步读取文件
.
生成指定范围的随机数
.
定时器范例
.
返回当前SWF文件所在页面的url
.
通过get方式发送或者请求数据
可能有用的
.
C#实现的html内容截取
.
List 切割成几份 工具类
.
SQL查询 多列合并成一行用逗号隔开
.
一行一行读取txt的内容
.
C#动态修改文件夹名称(FSO实现,不移动文件)
.
c# 移动文件或文件夹
.
c#图片添加水印
.
Java PDF转换成图片并输出给前台展示
.
网站后台修改图片尺寸代码
.
处理大图片在缩略图时的展示
芷君
贡献的其它代码
(
38
)
.
把应用程序标题设置为版本号
.
异步读取文件
.
生成指定范围的随机数
.
定时器范例
.
返回当前SWF文件所在页面的url
.
通过get方式发送或者请求数据
.
清除url里的http和https
.
智能缩放背景
.
生成随机boolean值
.
创建Grid表格
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3