Retrieve data from Json through php in android?

后端 未结 3 894
梦如初夏
梦如初夏 2021-01-28 05:03

I have the following data in Json how could I retrieve data from this file

{\"first_name\":\"immi\",\"last_name\":\"Ahmad\",\"contact_no\":\"0333333\",\"dob\":\"         


        
3条回答
  •  后悔当初
    2021-01-28 05:49

    That's your all the content of json file?

    You should create a class to store the information of every json object.

    example you create PersonalInformation class have have instances "firstname", "lastname", "gender"...

    Then we use a for-loop statement to read all information.

    Hope this help!

提交回复
热议问题