简体   繁体   中英

groovy.json.JsonSlurper parse JSON

I'm trying to parse a JSON-File in my gradle task.

CODE:

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

JSON - FILE

{
   "prepare": {
       "installed": [],
       "uninstalled": []
   },
   "config": {
       "files": []
   }
}

But the code gives me the following exception:

Lexing failed on line: 1, column: 1, while reading '.', no possible valid JSON value or punctuation could be recognized.

And I don't understand why, I also validated my JSON-File on http://jsonlint.com/ and it says that it is a valid JSON!

Above code is trying to parse the string ../files/json/myJSON.json as JSON. Instead use:

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM