I'm using Gson to convert a Java object to Json. One of the object's fields holds a string containing an escaped double quote, like this:
"double quote:'\"'"
The toJson method returns the string as above, but I would like to print this instead:
double quote:'"'
Is this possible using Gson?