我正在尝试在gradle任务中解析JSON文件。

码:

def jsonFile = "../files/json/myJSON.json"
def list = new JsonSlurper().parseText(jsonFile)

JSON-文件
{
   "prepare": {
       "installed": [],
       "uninstalled": []
   },
   "config": {
       "files": []
   }
}

但是代码给了我以下异常:
Lexing failed on line: 1, column: 1, while reading '.', no possible valid JSON value or punctuation could be recognized.

而且我不明白为什么,我也在http://jsonlint.com/上验证了我的JSON文件,它说这是有效的JSON!

最佳答案

上面的代码试图将字符串../files/json/myJSON.json解析为JSON。而是使用:

def jsonFile = new File("../files/json/myJSON.json")
def map = new JsonSlurper().parse(jsonFile)

07-24 20:45