Using Android Studio and alexd-jsonrpc client I recieve a response, where cyrillic symbols looks like:
{..."ticket_info=ÐÐ¾ÐºÑ 1"...}
instead of:
{..."ticket_info=Мойщик 1"...}
How can i decode this to cyrillic?
JSONRPC request code:
JSONRPCClient client = JSONRPCClient.create(_server, JSONRPCParams.Versions.VERSION_2);
client.setConnectionTimeout(2000);
client.setSoTimeout(2000);
_workplaceList = client.callJSONArray("GetWorkplaceList", companyID);