I have two json files and I want to find the difference of those files.
for eg :
file1
contains below contents.
"iClasses": [{
"name": "C1",
"label": "Classifier",
"description": "Blueprint of all classifications in LDM",
"isFirstClass": true,
"boost": "LOW",
"superClasses": []
},
//same as above it contains 5 classes like c2,c3,c4 and c5 and has their own properties like label,classifier,boost etc.
]
File2
contains only two classes which are present in file1 (let's say C1
and C2
).
If I compare these two files, it should show mismatch classes (say C3
,C4
and C5
and it's contents) as difference.
Is there any way to find the difference?