java - How to convert String to JsonObject -


i using httprequest json web string.

it quite simple, cannot seem convert string javax.json.jsonobject.

how can this?

jsonreader jsonreader = json.createreader(new stringreader("{}")); jsonobject object = jsonreader.readobject(); jsonreader.close(); 

should trick. see docs , examples.


Comments

Popular posts from this blog

Regex find and replace between <div class="customclass"> and </div> tag -

jpa - Passing entitymanager from reflection method -