There is for example an object

{ field1:"%2B", field2:"%2B" } 

His fields are encoded in URL encoding, how do I translate them into utf-8. The original object has much more fields. I do not want to use the solution where I need to decode all the fields separately using a URLDecode from Java

    1 answer 1

    In addition to walking through each object and applying a function, you can try to bring the entire object to a string and apply the URLDecode function to this line, and then parse it.