{"balance":1000.21,"is_vip":true,"num":100,"name":"foo"}
This is my json string. I want to iterate each element and get my output as
1000
true
100
foo
I tried creating JSONArray with the following syntax
JSONArray jsonarr = new JSONArray(myString);
But the error thrown is
"The constructor JSONArray(String) is undefined"
So what can be the possible solution this?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…