2012-12-22 63 views
3

如何解碼Json文件。 我的代碼從Flex中的資產訪問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 

回答

1

使用下面的代碼,它的工作對我來說。

此代碼的insted的

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

使用此一個

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

import以下包

import com.adobe.serialization.json.JSON;