I'm trying to read in JSON file. It has ANSI encoding. The reader throws an error:
"A JSON syntax error was found at line 1, column 49. A sequence of bytes was found which is invalid in the UTF-8 encoding."
Is it possible to get around this?
This post is closed to further activity.
It may be an old question, an answered question, an implemented idea, or a notification-only post.
Please check post dates before relying on any information in a question or answer.
For follow-up or related questions, please post a new question or idea.
If there is a genuine update to be made, please contact us and request that the post is reopened.
You can read the JSON with a text file reader, which has a parameter to specify the encoding, and then use the various JSON transformers to turn the text string into features with attributes.
   },    {       "objektokodas" : 50002363,       "pavadinimas" : "7-2, 7-5, 7-6, 7-7, 7-8, unikalus numeris 1094-0073-0016:0031, plotas 65,35 kv. m, pusr?syje",       "adresas" : "V. Sopeno g. 12, Vilnius",       "teritorija" : "Vilnius",       "weblink" : "https://www.turtas.lt/8952",       "aukcionas" : {          "skelbimoPavadinimas" : "Negyvenamosios patalpos",          "arElektroninisAukcionas" : true,          "objektoPradineKaina" : 155700,          "zemesPradineKaina" : null,          "sklypasNuomojamas" : false,          "aukcionoData" : "2019-12-09T09:00:00",          "registracijosPradzia" : "2019-12-02T00:00:00",          "registracijosPabaiga" : "2019-12-04T23:59:00",          "weblink" : null       },       "statiniai" : []    },
   },    {       "objektokodas" : 50002363,       "pavadinimas" : "7-2, 7-5, 7-6, 7-7, 7-8, unikalus numeris 1094-0073-0016:0031, plotas 65,35 kv. m, pusr?syje",       "adresas" : "V. Sopeno g. 12, Vilnius",       "teritorija" : "Vilnius",       "weblink" : "https://www.turtas.lt/8952",       "aukcionas" : {          "skelbimoPavadinimas" : "Negyvenamosios patalpos",          "arElektroninisAukcionas" : true,          "objektoPradineKaina" : 155700,          "zemesPradineKaina" : null,          "sklypasNuomojamas" : false,          "aukcionoData" : "2019-12-09T09:00:00",          "registracijosPradzia" : "2019-12-02T00:00:00",          "registracijosPabaiga" : "2019-12-04T23:59:00",          "weblink" : null       },       "statiniai" : []    },