'How to parse .json file with a gradle task and get the json data from it?
Is there a way where in I can parse a xyz.json file with help of a gradle task and get all the individual json data inside it? for eg. I want to parse this data which is stored in a xyz.json file in my assets folder and get all the values inside it, eg. get the value of "type".
{
"type":"xyz",
"properties": {
"foo": {
"type": "pqr"
},
"bar": {
"type": "abc"
},
"baz": {
"type": "lmo"
}
}
}
Solution 1:[1]
If you want to parse a json file in build.gradle.kts do as follows:
import groovy.json.JsonSlurper
val VersionsMap: Map<String, String> by extra {
JsonSlurper().parse(file("xyz.json")) as Map<String, String>
}
val value = VersionMap.get("key")
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Steephen |
