JSONInputStream jsonIn = new JSONInputStream(new FileInputStream(multiObjectFile));
/*
* Read the first object from the file
*/
Object aPossibleMap = jsonIn.readObject();
assertEquals(HashMap.class, aPossibleMap.getClass());
HashMap aMap = (HashMap)aPossibleMap;
assertEquals("Bob", aMap.get("name"));
assertEquals((long)27, aMap.get("age"));