3

如何解码 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
4

1 回答 1

1

使用下面的代码对我有用。

插入此代码

var arr:Object = com.adobe.serialization.json.JSON.decode(json);

用这个

var arr:Object = JSON.decode(json);

import下面的包

import com.adobe.serialization.json.JSON;   
于 2012-12-22T07:53:56.077 回答