4
Good afternoon!
Could you help me read this JSON file in Delphi. I have tried several classes, including the native Delphi and I was able to read only the data of the first node, as status. I use the Delphi XE6 version.
{
"erro":{
"status":400,
"tipo":"requisicao",
"causas":[
{
"codigo":"4210BC95",
"mensagem":"Banco Caixa Econômica Federal - Campo (boleto.conta.convenio) - O formato do convênio é de até 7 dígitos (6 dígitos + dígito verificador) e deve ser (dddddd-d), onde (d) = numérico, representa um dígito numérico de zero a n ove, mas o informado foi (65).",
"suporte":"http://www.boletocloud.com/app/dev/api"
},
{
"codigo":"980D273F",
"mensagem":"Banco Caixa Econômica Federal - Campo (boleto.conta.agencia) - O formato da agência de 4 dígitos deve ser (dddd), mínimo 1 dígito e máximo 4 dígitos, onde (d) = numérico, representa um dígito numérico de zero a nove, mas o informado foi (45125).",
"suporte":"http://www.boletocloud.com/app/dev/api"
}
]
}
}
How is your code?
– Daniel Grillo
Help yourself to these two links... http://answall.com/questions/89379/como-ler-um-ficheiro-json-usando-o-delphi http://balaiotecnologico.blogspot.com.br/2013/07/lendo-dados-json-em-aplicacoes-delphi.html
– Jefferson Rudolf
I made several codes with several JSON classes. I had already seen this tutorial, but I didn’t understand the concept of array node. Thank you!
– André