How to parse the elements in Json file if Json is in below format:
"A"{
{
"S":5{
"R":4[
[
[
1,2
],
[
3,4
],
[
5,6
]
]
]
},
. "B":{
. "E":2
"F":4
}
}
How to parse the elements in Json file if Json is in below format:
"A"{
{
"S":5{
"R":4[
[
[
1,2
],
[
3,4
],
[
5,6
]
]
]
},
. "B":{
. "E":2
"F":4
}
}
Correct format {
"A":{
"S":{
"R":[
[
[
1,
2
],
[
3,
4
],
[
5,
6
]
]
]
}
},
"B":{
"E":2,
"F":4
}
}
And than you can parse after reading : How to parse JSON in Java