I have REST client that delivers URL as parameters. But my cloud REST infrastructure accepts only JSON format.
Is there any way to convert (parse) the URL parameters to JSON format in Java?
Example of URL parameters:
data=data10&sensor=sensor10&type=type10
to JSON format like:
{"data":"data10","sensor":"sensor10","type":"type10"}