AS3 AIR文件搜索和替换
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了AS3 AIR文件搜索和替换相关的知识,希望对你有一定的参考价值。
// search through each file for each (var $file : File in _dataArray) { if (_fs != null) _fs.close(); _fs = new FileStream(); // read the file content _fs.open($file, FileMode.READ); var data : String = _fs.readUTFBytes(_fs.bytesAvailable); _fs.close(); // replace the current content with the new _fs = new FileStream(); _fs.open($file, FileMode.WRITE); data = data.split($searchString).join($replaceString); _fs.writeUTFBytes(data); _fs.close(); }
以上是关于AS3 AIR文件搜索和替换的主要内容,如果未能解决你的问题,请参考以下文章
as3 AIR 添加或删除ApplicationDirectory目录下文件