Skip to content
Advertisement

How to parse JSON data without define array in JSON in Android Studio

I am new in Android I am trying to develop an application which is used to validate ifsc code by entering code in edit text.

So in this project, I am using Razorpay JSON to fetch data but when I fetch data it shows in JSON format not readable format.

How to convert JSON data in a readable format?

My code works fine when I am adding square bracket [] in JSON but I can’t edit JSON because it is third-party JSON.

Here is my code:

JavaScript

Advertisement

Answer

This is happening because the response is a JSONObject and not a JSONArray.

Try these changes

JavaScript

Remove the for loop and the JSONArray declaration


Also you should consider using volley to get an JSONObject response it would make life easier.

How to get and parse a JSON-object with Volley

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