Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

{"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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
404 views
Welcome To Ask or Share your Answers For Others

1 Answer

You have to use JSONObject class instead:

JSONObject jso = new JSONObject(yourJsonString);

// values
for(int i = 0; i<jso.names().length(); i++){
    System.out.println( jso.get( jso.names().getString(i) ) );
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...