在发布我的AIR应用程序(CurrentFile)时,我还将chatFile.swf包含在安装文件中。 在我的AIR设置面板[AIR 3.7 for Desktop]中,在“包含文件”下,我有以下内容:
- CurrentFile.swf
- CurrentFile-app.xml中
- chatFile.swf
以下是我的CurrentFile.swf中的AS3代码:
import flash.net.URLRequest;
import flash.events.Event;
import flash.display.Loader;
import flash.filesystem.File;
var chatLoaderWindow:Loader;
function loadchat(m:MouseEvent):void
{
chatLoaderWindow = new Loader();
chatLoaderWindow.contentLoaderInfo.addEventListener(Event.COMPLETE, chatLoadComplete);
chatLoaderWindow.contentLoaderInfo.addEventListener(Event.INIT, chatInitLoad);
chatLoaderWindow.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, chatErrorLoad);
chatLoaderWindow.contentLoaderInfo.addEventListener(HTTPStatusEvent.HTTP_STATUS, chatHttpStatus);
myclip.chatwindow.addChild(chatLoaderWindow);
var f:File = File.applicationStorageDirectory.resolvePath("chatFile.swf");
chatLoaderWindow.load(new URLRequest(f.url));
tracebox.text = "Chat URL" + f.url;
}
function chatLoadComplete(e:Event):void
{
tracebox.text = "chat loaded";
}
function chatErrorLoad(io:IOErrorEvent):void
{
tracebox.text = "chat IO Error: "+io;
}
function chatInitLoad(i:Event):void
{
tracebox.text = "chat INIT";
}
function chatHttpStatus(e:HTTPStatusEvent):void
{
tracebox.text = "chat Http"+e;
}
myclip.chatbut.addEventListener(MouseEvent.CLICK,loadchat);
/*
Output:
chat IO Error: [IOErrorEvent type="ioError" bubbles=false cancelable=false eventPhase=2 text="Error #2035" errorID=2035]
编辑:我明白了。这真的很简单
这不是必需的:
var f:File = File.applicationStorageDirectory.resolvePath("chatFile.swf");
chatLoaderWindow.load(new URLRequest(f.url));
插入此内容:
chatLoaderWindow.load(new URLRequest("app:/chatFile.swf"));
所以现在我的问题是: File.applicationStorageDirectory.resolvePath的目的是什么?
答案 0 :(得分:0)
这里有两个目录。一个是“应用程序”目录,您可以在其中放置安装文件。一个是“application-storage”目录,它是在运行时写入文件的便利位置。要访问这些目录,您可以使用File.resolvePath()函数或使用URI方案快捷方式app:或app-storage:。在您的初始尝试中,您只是在查找文件的错误目录。
答案 1 :(得分:0)
File.applicationStorageDirectory.resolvePath(“somefile.swf”)。url将等于“app-storage:/somefile.swf”
File.applicationDirectory.resolvePath(“somefile.swf”)。url将等于“app:/somefile.swf”
应用程序目录是安装应用程序的位置。应用程序存储目录是您的应用程序可以将文件保存到的文件夹。
resolvePath()返回一个文件对象。除了获取文件位置的跨平台URL之外,您可以将其用于其他目的,例如fileObj.exists和fileObj.parent.createDirectory()。 fileObj.url只是您使用URLLoader以独立于平台的方式访问文件的URL。