用AS3读取不同的文件类型

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用AS3读取不同的文件类型相关的知识,希望对你有一定的参考价值。

Found this code. It is an example of loading and reading different file types with ActionScript 3
  1. import flash.filesystem.FileMode;
  2. import flash.filesystem.FileStream;
  3. import flash.filesystem.File;
  4.  
  5. var myFile:File = File.appResourceDirectory; // Create out file object and tell our File Object where to look for the file
  6. myFile = myFile.resolve("mySampleFile.txt"); // Point it to an actual file
  7.  
  8. var fileStream:FileStream = new FileStream(); // Create our file stream
  9. fileStream.open(myFile, FileMode.READ);
  10.  
  11. var fileContents:String = fileStream.readUTFBytes(fileStream.bytesAvailable); // Read the contens of the
  12. fileContents_txt.text = fileContents; // Display the contents. I've created a TextArea on the stage for display
  13.  
  14. fileStream.close(); // Clean up and close the file stream

以上是关于用AS3读取不同的文件类型的主要内容,如果未能解决你的问题,请参考以下文章

as3中xml文件的加载和读取

AS3 - 通过拖放加载不同的 XML 文件?

AS3 用ShareObject保存数据之后,发布成exe时不能读取数据

AS3 从图块表中批量裁切图块的最佳方法?

使用“文件”保存场景对象位置以便稍后在 AS3 中重建

从 Apollo 缓存中读取特定类型的所有片段