首页 > 开发 > Flex > 正文

Flex文件读取报错示例

2024-09-08 18:17:28
字体:
来源:转载
供稿:网友
Flex文件读取

1、s:WindowedApplication
复制代码 代码如下:

<?xml version="1.0" encoding="utf-8"?>
<s:WindowedApplication xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:mx="library://ns.adobe.com/flex/mx"
creationComplete="initHandler()">
<s:layout>
<s:HorizontalLayout/>
</s:layout>
<fx:Script>
<![CDATA[
import mx.events.FlexEvent;

/*初始化函数*/
protected function initHandler():void
{
var file:File = new File();
}

]]>
</fx:Script>
<fx:Declarations>
<!-- 将非可视元素(例如服务、值对象)放在此处 -->
</fx:Declarations>
</s:WindowedApplication>

 
2、File
复制代码 代码如下:

var file:File = new File(File。applicationDirectory.nativePath+"/test.txt");

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表