使用 JsonSlurper 解析 JSON 文件
我的代码如下
String url = 'https://urlThatIWantToGoto'
String jsonFile = new JsonSlurper.parseText(new URL(url).text))
JSONArray jsonParse = new JSONArray(jsonFile)
每当我运行此代码时,我都会收到如下错误打印
Caught: org.codehaus.groovy.grails.web.json.JSONException: Expected a ',' or '}' at character 982 of "MyJSONFile"
有趣的是,它适用于我拥有的示例 JSON url 之一,而其他两个则失败。(我已经检查并确认所有三个 url 都包含有效的 JSON 文件)
谁能告诉我我的代码有什么问题?