FileStream读取中文显示乱码的解决办法

在初始化函数中加入下面这句代码就OK了!

               System.useCodePage=true;

例如初始化函数为initApp()

public function initApp():void{

       System.useCodePage=true;

}

原文地址:https://www.cnblogs.com/quanhai/p/1715165.html