This java console Application parses an input JSON file, outputting the results
##For windows compile and running
java -cp json-simple-1.1.1.jar;. JsonParser vehicles.json
javac -cp json-simple-1.1.1.jar;. *.java
##For linux compile and running
java -cp json-simple-1.1.1.jar:. JsonParser vehicles.json
javac -cp json-simple-1.1.1.jar:. *.java