AS3 AIR文件搜索和替换

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了AS3 AIR文件搜索和替换相关的知识,希望对你有一定的参考价值。

  1. // search through each file
  2. for each (var $file : File in _dataArray)
  3. {
  4. if (_fs != null) _fs.close();
  5.  
  6. _fs = new FileStream();
  7.  
  8. // read the file content
  9. _fs.open($file, FileMode.READ);
  10. var data : String = _fs.readUTFBytes(_fs.bytesAvailable);
  11. _fs.close();
  12.  
  13. // replace the current content with the new
  14. _fs = new FileStream();
  15. _fs.open($file, FileMode.WRITE);
  16.  
  17. data = data.split($searchString).join($replaceString);
  18.  
  19. _fs.writeUTFBytes(data);
  20. _fs.close();
  21. }

以上是关于AS3 AIR文件搜索和替换的主要内容,如果未能解决你的问题,请参考以下文章

AS3:如何激活android air app?

AS3 / AIR - 创建纯文本文件?

如何将谷歌游戏服务添加到 AIR AS3?

as3 AIR 添加或删除ApplicationDirectory目录下文件

flash as3 和 adobe air -- 保存绘图文件,之后可以撤消/重做

AS3 / AIR:尝试上载文件时出现IOStream错误