I am converting InputStream to JSONObject using following code. My question is, is there any simple way to convert InputStream to JSONObject. Without doing InputStream -> Bu
you could use an Entity:
FileEntity entity = new FileEntity(jsonFile, "application/json"); String jsonString = EntityUtils.toString(entity)