Android Question Help on parsing very complex JSON

vfafou

Well-Known Member
Licensed User
Longtime User
Hello!
I need to parse the following structure.
Could anyone help me?
Thank you in advance!
B4X:
"timeStamp":"01-02-2017 00:35",
"Group1":[
{
"hour":"31/01/2017 17:00",
"data":[
{
"ID":337083958,
"Time1":"31/01/2017 17:50",
"Time2":"31/01/2017 17:45"
},
{
"ID":337083959,
"Time1":"31/01/2017 17:55",
"Time2":"31/01/2017 17:50"
}
]
},
{
"hour":"31/01/2017 18:00",
"data":[
{
"ID":337083960,
"Time1":"31/01/2017 18:10",
"Time2":"31/01/2017 18:25"
},
{
"ID":337083961,
"Time1":"31/01/2017 18:15",
"Time2":"31/01/2017 17:55"
}
]
}
],
"Group1A":[
{
"ID":337084000,
"Time1":"01/02/2017 00:45",
"Time2":"01/02/2017 00:30"
}
],
"Group2":{
}
}
 

DonManfred

Expert
Licensed User
Longtime User
Additionally to @AlexMaa answer it seems that the json you posted isn´t complete (invalid json)
 
Upvote 0

vfafou

Well-Known Member
Licensed User
Longtime User
Hello!
Thank you for your responses!
I know it's unfinished... It was a sample of a 297KB string!
I'm sorry for any inconvenience I caused! ;)
By the way, I've parsed all this with success after your suggestions!!!:)
 
Upvote 0
Top