Hey Guys, coming up with very basic question! Whic...
# getting-started
n
Hey Guys, coming up with very basic question! Which is preferable way or package should be used to convert json string to json object/array ?
a
n
How can we build json object without de/serialize? eg. For org.json
Copy code
val json = JSONObject()
json.put("key","value")
a
You simple example can also be done with Map<String, String>
👍 1