User Java String replacement method to replace string.
Take you Json as a string then replace value via string replacement method.
Here is small example.
String replaceSample = "This String replace Example shows how to replace one char from
String newString = replaceSample.replace('r', 't');
Thanks.