I have a simple JSON string in my class.
String json = "{'key1':'value1','key2':'value2'}";
And I want create 3 simple methods that will
1. Put value in my JSON string.
2. Get value in my JSON string.
3. Remove value in my JSON string.
Is there any simple library in Java? Or I have to implement it myself?
Thanks!