How do I get the properties names of a Json using the Gson library?
Example input:
{
"Ficha":[
{
"nome":"nome",
"sobrenome":"sobrenome",
"idade":"idade",
"endereco":"endereco",
"empresa":"empresa",
"telefones":[
{
"residencial":"residencial"
},
{
"celular":"celular"
}
]
}
]
}
Expected Exit:
["nome", "sobrenome", "idade", "endereco", "empresa", "telefones", ...