gpt4 book ai didi

json - groovy.json.JsonSlurper解析JSON

转载 作者:行者123 更新时间:2023-12-03 04:05:26 25 4
gpt4 key购买 nike

我正在尝试在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)

关于json - groovy.json.JsonSlurper解析JSON,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24953522/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com