我有来自 php 的字符串,比如说
stringName={instruction:["1","2","3"]}
我想把 tat 字符串变成一个数组我试过这个
stringName= stringName={instruction:["1","2","3"]}
JSONArray menuitemArray = null;
String[] result= null;
try
{
jObject = new JSONObject(stringName);
menuitemArray = jObject.getJSONArray("instruction");
for (int i=0; i<menuitemArray.length(); i++)
{
result[i] = menuitemArray.getJSONArray(i).toString();
}
}
catch (JSONException e1)
{
e1.printStackTrace();
}
但它给了我错误:(
有人知道正确的方法吗?