gpt4 book ai didi

actionscript-3 - Flash AS3 读取文本文件

转载 作者:行者123 更新时间:2023-12-02 05:11:21 25 4
gpt4 key购买 nike

我只需要从我的计算机或网站读取一个文本文件。我已经尝试了一切,但到目前为止没有任何效果。它应该非常简单,只需从网站读取一个文本文件,如 http://foo.com/foo.txt/ ,但我已经尝试了一切,但我在谷歌上看到的任何东西都无法正常工作。我不在乎我如何解决问题,只要我能做到。

最佳答案

要读取文件的内容,只需使用URLLoader:

// Define the path to the text file.
var url:URLRequest = new URLRequest("file.txt");

// Define the URLLoader.
var loader:URLLoader = new URLLoader();
loader.load(url);

// Listen for when the file has finished loading.
loader.addEventListener(Event.COMPLETE, loaderComplete);
function loaderComplete(e:Event):void
{
// The output of the text file is available via the data property
// of URLLoader.
trace(loader.data);
}

对于另一个域上的内容,您需要托管跨域文件才能加载文本文件。

关于actionscript-3 - Flash AS3 读取文本文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15400433/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com