报错Use JsonReader.setLenient(true) to accept malformed JSON at line 1 column 10 path $
时间: 2024-04-18 12:32:55 浏览: 294
json出错提示
这个报错是由于在解析JSON时遇到了格式错误导致的。它建议使用`JsonReader.setLenient(true)`来接受格式不正确的JSON。在解析JSON之前,你可以调用`setLenient(true)`来设置`JsonReader`对象的宽松模式,这样它将接受某些不符合标准JSON格式的输入。请注意,这只是一种权宜之计,如果可能的话,最好修复JSON数据的格式错误。
阅读全文