I have the following JSON File:
"fields": {
"x1": {
"name": "AnExteremLongName"
},
"x2": {
"name": "AnotherExteremLongName"
},
},"row": [
{
"x1": {
"name":"Some random Text"
},
"x2": {
"name":"Other random Text"
}
}, ....
This is basically a table and to reduce the size of the Json file, the names are extraced into this x values.
I want to get the the Value of "AnExteremLongName" so I have to first get the representive X value. How can I do this without reading all varibles and store them into a "Hashmap"
So basically something like:
String getParamNamebyValue(String ParamValue);