String resource = "2.json";
InputStream is = Thread.currentThread().getContextClassLoader().getResourceAsStream(resource);
JSONReader reader = new JSONReader(new InputStreamReader(is, "UTF-8"));
reader.startObject();
Assert.assertEquals("company", reader.readString());
Assert.assertTrue(reader.readObject() instanceof JSONObject);
Assert.assertEquals("count", reader.readString());