Convert InputStream to JSONObject

前端 未结 13 1856
刺人心
刺人心 2020-12-05 03:52

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

相关标签:
13条回答
  • 2020-12-05 04:56
    InputStream inputStreamObject = PositionKeeperRequestTest.class.getResourceAsStream(jsonFileName);
    JSONObject jsonObject = new JSONObject(IOUtils.toString(inputStreamObject));
    
    0 讨论(0)
提交回复
热议问题