I need to parse to the following json
{
"rssEmpregados": {
"pesquisa": "marcia",
"registoInicial": "0",
"ordem": "ASC",
"parametrosList": [
{
"parametros": [],
"tabela": "EMPREGADOS_CRSS",
"coluna1": "CODIGO_CRSS",
"coluna2": "DESCRICAO",
"coluna": "CODIGO_CRSS"
},
{
"parametros": [],
"tabela": "EMPREGADOS_FORMAS_PAGAMENTO",
"coluna1": "CODIGO_FORMA_PAGAMENTO",
"coluna2": "DESCRICAO",
"coluna": "CODIGO_FORMA_PAGAMENTO"
}
]
}
}
I've already done the code for the initial part, but I'm having trouble with the rest.
try {
JSONObject js = new JSONObject();
JSONObject rssEmpregados = new JSONObject();
rssEmpregados.put("pesquisa", procuraTextoEt.getText());
rssEmpregados.put("registoInicial", "0");
rssEmpregados.put("ordem", "ASC");
js.put("rssEmpregados", rssEmpregados);
Log.e("params", rssEmpregados.toString());
} catch (JSONException e) {
e.printStackTrace();
}