现在有一个字符串str是从服务器传来的,我在debug模式下观测到它的值为:
[{unit_price=22, number=11, total_price=242, description=10:31}, {unit_price=8, number=55, total_price=440, description=rtgh}]
然而将其转化为JSONArray字符串格式时会报错:
JSONArray json_str=new JSONArray(str);
//JSONException........
我想知道这究竟有什么问题?这不显然就是一个JSONArray格式的字符串吗,为啥不能转化呀?