I have a function that makes a for loop in a String array.
I need the loop to start from index[1]
of that array.
But I'm not getting it.
String arquivo[] = arquivoDecodificado.split("\r\n|\r|\n");
for(String linha: arquivo ) {
String[] linhaQuebrada= linha.split(";");
Pessoas idPessoa = pessoasService.buscarPessoaComCnpj(linhaQuebrada[0],idEntidade);
operadoraCart.setEntidade(ent);
operadoraCart.setPessoa(idPessoa);
operadoraCartaoService.cadastrar(operadoraCart);
}
I need it to start the loop from arquivo[1]