如何解码Json文件。 我的代码
var bytes:ByteArray = new json_file();
var json:String = bytes.readUTFBytes(bytes.length);
var arr:Object = JSON.decode(json);
运行上述命令
时出现以下错误Access of undefined property JSON.
-JSON
答案 0 :(得分:1)
使用以下代码对我有用。
而不是这段代码
var arr:Object = com.adobe.serialization.json.JSON.decode(json);
使用此
var arr:Object = JSON.decode(json);
和import
以下包
import com.adobe.serialization.json.JSON;