Related Article(s):
Last active
May 17, 2024 21:01
-
-
Save GroupDocsGists/a72457d324d8f804b3da7f7c65df3c19 to your computer and use it in GitHub Desktop.
How to compare JSON files with Java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
try(Comparer comparer = new Comparer("source.json")) | |
{ | |
comparer.add("destin.json"); | |
comparer.compare(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment