Please advice how to convert a String to JsonObject using gson library.
String
JsonObject
gson
What I unsuccesfully do:
String stri
String string = "abcde"; // The String which Need To Be Converted JsonObject convertedObject = new Gson().fromJson(string, JsonObject.class);
I do this, and it worked.