Skip to content
Advertisement

Using “put” method of JSONObject in for loop (java)

I’m trying to use JSONObject’s put method in for loop. But I’m not getting Expected output.

Expected output:

JavaScript

OutPut I’m getting:

JavaScript

here is my code:

JavaScript

Advertisement

Answer

Have you tried moving the construction of infoObj inside the loop. By having it outside, you’re maintaining state across loop iterations. I suspect you’re just updating the same json object each time and adding it to the JSON array. Not sure why you NOT getting duplicates because I do when I run your code.

Change it to this makes it “better”

JavaScript
User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement